From 7932a36ff34203d5f0ff755e75a99e414c8169ee Mon Sep 17 00:00:00 2001 From: Sarah Date: Tue, 19 Apr 2016 14:34:27 -0700 Subject: [PATCH 01/23] done with baseline --- TaskListRails/.gitignore | 17 ++ TaskListRails/Gemfile | 47 +++++ TaskListRails/Gemfile.lock | 160 ++++++++++++++++++ TaskListRails/README.rdoc | 28 +++ TaskListRails/Rakefile | 6 + TaskListRails/app/assets/images/.keep | 0 .../app/assets/javascripts/application.js | 16 ++ .../app/assets/javascripts/tasklist.coffee | 3 + .../app/assets/stylesheets/application.css | 15 ++ .../app/assets/stylesheets/tasklist.scss | 3 + .../app/controllers/application_controller.rb | 5 + TaskListRails/app/controllers/concerns/.keep | 0 .../app/controllers/tasklist_controller.rb | 2 + .../app/helpers/application_helper.rb | 2 + TaskListRails/app/helpers/tasklist_helper.rb | 2 + TaskListRails/app/mailers/.keep | 0 TaskListRails/app/models/.keep | 0 TaskListRails/app/models/concerns/.keep | 0 TaskListRails/app/models/rails_task_list.rb | 2 + .../app/views/layouts/application.html.erb | 14 ++ TaskListRails/bin/bundle | 3 + TaskListRails/bin/rails | 9 + TaskListRails/bin/rake | 9 + TaskListRails/bin/setup | 29 ++++ TaskListRails/bin/spring | 15 ++ TaskListRails/config.ru | 4 + TaskListRails/config/application.rb | 26 +++ TaskListRails/config/boot.rb | 3 + TaskListRails/config/database.yml | 25 +++ TaskListRails/config/environment.rb | 5 + .../config/environments/development.rb | 41 +++++ .../config/environments/production.rb | 79 +++++++++ TaskListRails/config/environments/test.rb | 42 +++++ TaskListRails/config/initializers/assets.rb | 11 ++ .../initializers/backtrace_silencers.rb | 7 + .../config/initializers/cookies_serializer.rb | 3 + .../initializers/filter_parameter_logging.rb | 4 + .../config/initializers/inflections.rb | 16 ++ .../config/initializers/mime_types.rb | 4 + .../config/initializers/session_store.rb | 3 + .../config/initializers/wrap_parameters.rb | 14 ++ TaskListRails/config/locales/en.yml | 23 +++ TaskListRails/config/routes.rb | 56 ++++++ TaskListRails/config/secrets.yml | 22 +++ .../20160419202627_create_rails_task_lists.rb | 11 ++ TaskListRails/db/schema.rb | 24 +++ TaskListRails/db/seeds.rb | 27 +++ TaskListRails/lib/assets/.keep | 0 TaskListRails/lib/tasks/.keep | 0 TaskListRails/log/.keep | 0 TaskListRails/public/404.html | 67 ++++++++ TaskListRails/public/422.html | 67 ++++++++ TaskListRails/public/500.html | 66 ++++++++ TaskListRails/public/favicon.ico | 0 TaskListRails/public/robots.txt | 5 + TaskListRails/test/controllers/.keep | 0 .../controllers/tasklist_controller_test.rb | 7 + TaskListRails/test/fixtures/.keep | 0 .../test/fixtures/rails_task_lists.yml | 11 ++ TaskListRails/test/helpers/.keep | 0 TaskListRails/test/integration/.keep | 0 TaskListRails/test/mailers/.keep | 0 TaskListRails/test/models/.keep | 0 .../test/models/rails_task_list_test.rb | 7 + TaskListRails/test/test_helper.rb | 10 ++ TaskListRails/vendor/assets/javascripts/.keep | 0 TaskListRails/vendor/assets/stylesheets/.keep | 0 67 files changed, 1077 insertions(+) create mode 100644 TaskListRails/.gitignore create mode 100644 TaskListRails/Gemfile create mode 100644 TaskListRails/Gemfile.lock create mode 100644 TaskListRails/README.rdoc create mode 100644 TaskListRails/Rakefile create mode 100644 TaskListRails/app/assets/images/.keep create mode 100644 TaskListRails/app/assets/javascripts/application.js create mode 100644 TaskListRails/app/assets/javascripts/tasklist.coffee create mode 100644 TaskListRails/app/assets/stylesheets/application.css create mode 100644 TaskListRails/app/assets/stylesheets/tasklist.scss create mode 100644 TaskListRails/app/controllers/application_controller.rb create mode 100644 TaskListRails/app/controllers/concerns/.keep create mode 100644 TaskListRails/app/controllers/tasklist_controller.rb create mode 100644 TaskListRails/app/helpers/application_helper.rb create mode 100644 TaskListRails/app/helpers/tasklist_helper.rb create mode 100644 TaskListRails/app/mailers/.keep create mode 100644 TaskListRails/app/models/.keep create mode 100644 TaskListRails/app/models/concerns/.keep create mode 100644 TaskListRails/app/models/rails_task_list.rb create mode 100644 TaskListRails/app/views/layouts/application.html.erb create mode 100755 TaskListRails/bin/bundle create mode 100755 TaskListRails/bin/rails create mode 100755 TaskListRails/bin/rake create mode 100755 TaskListRails/bin/setup create mode 100755 TaskListRails/bin/spring create mode 100644 TaskListRails/config.ru create mode 100644 TaskListRails/config/application.rb create mode 100644 TaskListRails/config/boot.rb create mode 100644 TaskListRails/config/database.yml create mode 100644 TaskListRails/config/environment.rb create mode 100644 TaskListRails/config/environments/development.rb create mode 100644 TaskListRails/config/environments/production.rb create mode 100644 TaskListRails/config/environments/test.rb create mode 100644 TaskListRails/config/initializers/assets.rb create mode 100644 TaskListRails/config/initializers/backtrace_silencers.rb create mode 100644 TaskListRails/config/initializers/cookies_serializer.rb create mode 100644 TaskListRails/config/initializers/filter_parameter_logging.rb create mode 100644 TaskListRails/config/initializers/inflections.rb create mode 100644 TaskListRails/config/initializers/mime_types.rb create mode 100644 TaskListRails/config/initializers/session_store.rb create mode 100644 TaskListRails/config/initializers/wrap_parameters.rb create mode 100644 TaskListRails/config/locales/en.yml create mode 100644 TaskListRails/config/routes.rb create mode 100644 TaskListRails/config/secrets.yml create mode 100644 TaskListRails/db/migrate/20160419202627_create_rails_task_lists.rb create mode 100644 TaskListRails/db/schema.rb create mode 100644 TaskListRails/db/seeds.rb create mode 100644 TaskListRails/lib/assets/.keep create mode 100644 TaskListRails/lib/tasks/.keep create mode 100644 TaskListRails/log/.keep create mode 100644 TaskListRails/public/404.html create mode 100644 TaskListRails/public/422.html create mode 100644 TaskListRails/public/500.html create mode 100644 TaskListRails/public/favicon.ico create mode 100644 TaskListRails/public/robots.txt create mode 100644 TaskListRails/test/controllers/.keep create mode 100644 TaskListRails/test/controllers/tasklist_controller_test.rb create mode 100644 TaskListRails/test/fixtures/.keep create mode 100644 TaskListRails/test/fixtures/rails_task_lists.yml create mode 100644 TaskListRails/test/helpers/.keep create mode 100644 TaskListRails/test/integration/.keep create mode 100644 TaskListRails/test/mailers/.keep create mode 100644 TaskListRails/test/models/.keep create mode 100644 TaskListRails/test/models/rails_task_list_test.rb create mode 100644 TaskListRails/test/test_helper.rb create mode 100644 TaskListRails/vendor/assets/javascripts/.keep create mode 100644 TaskListRails/vendor/assets/stylesheets/.keep diff --git a/TaskListRails/.gitignore b/TaskListRails/.gitignore new file mode 100644 index 000000000..050c9d95c --- /dev/null +++ b/TaskListRails/.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/TaskListRails/Gemfile b/TaskListRails/Gemfile new file mode 100644 index 000000000..d0ca1fdd6 --- /dev/null +++ b/TaskListRails/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/TaskListRails/Gemfile.lock b/TaskListRails/Gemfile.lock new file mode 100644 index 000000000..c45949a77 --- /dev/null +++ b/TaskListRails/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/TaskListRails/README.rdoc b/TaskListRails/README.rdoc new file mode 100644 index 000000000..dd4e97e22 --- /dev/null +++ b/TaskListRails/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/TaskListRails/Rakefile b/TaskListRails/Rakefile new file mode 100644 index 000000000..ba6b733dd --- /dev/null +++ b/TaskListRails/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/TaskListRails/app/assets/images/.keep b/TaskListRails/app/assets/images/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/app/assets/javascripts/application.js b/TaskListRails/app/assets/javascripts/application.js new file mode 100644 index 000000000..e07c5a830 --- /dev/null +++ b/TaskListRails/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/TaskListRails/app/assets/javascripts/tasklist.coffee b/TaskListRails/app/assets/javascripts/tasklist.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/TaskListRails/app/assets/javascripts/tasklist.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/TaskListRails/app/assets/stylesheets/application.css b/TaskListRails/app/assets/stylesheets/application.css new file mode 100644 index 000000000..f9cd5b348 --- /dev/null +++ b/TaskListRails/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/TaskListRails/app/assets/stylesheets/tasklist.scss b/TaskListRails/app/assets/stylesheets/tasklist.scss new file mode 100644 index 000000000..1145a6742 --- /dev/null +++ b/TaskListRails/app/assets/stylesheets/tasklist.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Tasklist controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/TaskListRails/app/controllers/application_controller.rb b/TaskListRails/app/controllers/application_controller.rb new file mode 100644 index 000000000..d83690e1b --- /dev/null +++ b/TaskListRails/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/TaskListRails/app/controllers/concerns/.keep b/TaskListRails/app/controllers/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/app/controllers/tasklist_controller.rb b/TaskListRails/app/controllers/tasklist_controller.rb new file mode 100644 index 000000000..924b4f9d3 --- /dev/null +++ b/TaskListRails/app/controllers/tasklist_controller.rb @@ -0,0 +1,2 @@ +class TasklistController < ApplicationController +end diff --git a/TaskListRails/app/helpers/application_helper.rb b/TaskListRails/app/helpers/application_helper.rb new file mode 100644 index 000000000..de6be7945 --- /dev/null +++ b/TaskListRails/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/TaskListRails/app/helpers/tasklist_helper.rb b/TaskListRails/app/helpers/tasklist_helper.rb new file mode 100644 index 000000000..929bb1346 --- /dev/null +++ b/TaskListRails/app/helpers/tasklist_helper.rb @@ -0,0 +1,2 @@ +module TasklistHelper +end diff --git a/TaskListRails/app/mailers/.keep b/TaskListRails/app/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/app/models/.keep b/TaskListRails/app/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/app/models/concerns/.keep b/TaskListRails/app/models/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/app/models/rails_task_list.rb b/TaskListRails/app/models/rails_task_list.rb new file mode 100644 index 000000000..909c1f74d --- /dev/null +++ b/TaskListRails/app/models/rails_task_list.rb @@ -0,0 +1,2 @@ +class RailsTaskList < ActiveRecord::Base +end diff --git a/TaskListRails/app/views/layouts/application.html.erb b/TaskListRails/app/views/layouts/application.html.erb new file mode 100644 index 000000000..46eeb110b --- /dev/null +++ b/TaskListRails/app/views/layouts/application.html.erb @@ -0,0 +1,14 @@ + + + + TaskListRails + <%= 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/TaskListRails/bin/bundle b/TaskListRails/bin/bundle new file mode 100755 index 000000000..66e9889e8 --- /dev/null +++ b/TaskListRails/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/TaskListRails/bin/rails b/TaskListRails/bin/rails new file mode 100755 index 000000000..0138d79b7 --- /dev/null +++ b/TaskListRails/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/TaskListRails/bin/rake b/TaskListRails/bin/rake new file mode 100755 index 000000000..d87d5f578 --- /dev/null +++ b/TaskListRails/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/TaskListRails/bin/setup b/TaskListRails/bin/setup new file mode 100755 index 000000000..acdb2c138 --- /dev/null +++ b/TaskListRails/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/TaskListRails/bin/spring b/TaskListRails/bin/spring new file mode 100755 index 000000000..7fe232c3a --- /dev/null +++ b/TaskListRails/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/TaskListRails/config.ru b/TaskListRails/config.ru new file mode 100644 index 000000000..bd83b2541 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/application.rb b/TaskListRails/config/application.rb new file mode 100644 index 000000000..902432bad --- /dev/null +++ b/TaskListRails/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 TaskListRails + 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/TaskListRails/config/boot.rb b/TaskListRails/config/boot.rb new file mode 100644 index 000000000..6b750f00b --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/database.yml b/TaskListRails/config/database.yml new file mode 100644 index 000000000..1c1a37ca8 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/environment.rb b/TaskListRails/config/environment.rb new file mode 100644 index 000000000..ee8d90dc6 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/environments/development.rb b/TaskListRails/config/environments/development.rb new file mode 100644 index 000000000..b55e2144b --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/environments/production.rb b/TaskListRails/config/environments/production.rb new file mode 100644 index 000000000..5c1b32e48 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/environments/test.rb b/TaskListRails/config/environments/test.rb new file mode 100644 index 000000000..1c19f08b2 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/initializers/assets.rb b/TaskListRails/config/initializers/assets.rb new file mode 100644 index 000000000..01ef3e663 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/initializers/backtrace_silencers.rb b/TaskListRails/config/initializers/backtrace_silencers.rb new file mode 100644 index 000000000..59385cdf3 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/initializers/cookies_serializer.rb b/TaskListRails/config/initializers/cookies_serializer.rb new file mode 100644 index 000000000..7f70458de --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/initializers/filter_parameter_logging.rb b/TaskListRails/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/initializers/inflections.rb b/TaskListRails/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/initializers/mime_types.rb b/TaskListRails/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/initializers/session_store.rb b/TaskListRails/config/initializers/session_store.rb new file mode 100644 index 000000000..15d065a84 --- /dev/null +++ b/TaskListRails/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: '_TaskListRails_session' diff --git a/TaskListRails/config/initializers/wrap_parameters.rb b/TaskListRails/config/initializers/wrap_parameters.rb new file mode 100644 index 000000000..33725e95f --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/locales/en.yml b/TaskListRails/config/locales/en.yml new file mode 100644 index 000000000..065395716 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/routes.rb b/TaskListRails/config/routes.rb new file mode 100644 index 000000000..3f66539d5 --- /dev/null +++ b/TaskListRails/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/TaskListRails/config/secrets.yml b/TaskListRails/config/secrets.yml new file mode 100644 index 000000000..d018b47b2 --- /dev/null +++ b/TaskListRails/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: e8710a840c548877abb58af191ee8915c2c171d01fbc658bec4926ae2a1accb9e7efdf5649a595345155ec33ad73a5d7b20d6d96484ecfa2123e36e5e98ca6f9 + +test: + secret_key_base: 468502a804d121fb794552bf5c4dfcbb9a1ef07117a5bedce0292a43f497e8c0d1f421337de9647c89ac63a4975cfc61b04624dc4207fc4ba48cd25f03034d4b + +# 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/TaskListRails/db/migrate/20160419202627_create_rails_task_lists.rb b/TaskListRails/db/migrate/20160419202627_create_rails_task_lists.rb new file mode 100644 index 000000000..b7c00589e --- /dev/null +++ b/TaskListRails/db/migrate/20160419202627_create_rails_task_lists.rb @@ -0,0 +1,11 @@ +class CreateRailsTaskLists < ActiveRecord::Migration + def change + create_table :rails_task_lists do |t| + t.string :title + t.string :description + t.string :completed_at + + t.timestamps null: false + end + end +end diff --git a/TaskListRails/db/schema.rb b/TaskListRails/db/schema.rb new file mode 100644 index 000000000..937714bb6 --- /dev/null +++ b/TaskListRails/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: 20160419202627) do + + create_table "rails_task_lists", force: :cascade do |t| + t.string "title" + t.string "description" + t.string "completed_at" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + +end diff --git a/TaskListRails/db/seeds.rb b/TaskListRails/db/seeds.rb new file mode 100644 index 000000000..b58f91870 --- /dev/null +++ b/TaskListRails/db/seeds.rb @@ -0,0 +1,27 @@ +# This file should contain all the record creation needed to seed the database with its default +# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). +# +# Examples: +# +# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) +# Mayor.create(name: 'Emanuel', city: cities.first) +def random_time + Time.at(rand * Time.now.to_i) +end + +list = [ + { 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 } +] + +list.each do |task| + RailsTaskList.create task +end diff --git a/TaskListRails/lib/assets/.keep b/TaskListRails/lib/assets/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/lib/tasks/.keep b/TaskListRails/lib/tasks/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/log/.keep b/TaskListRails/log/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/public/404.html b/TaskListRails/public/404.html new file mode 100644 index 000000000..b612547fc --- /dev/null +++ b/TaskListRails/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/TaskListRails/public/422.html b/TaskListRails/public/422.html new file mode 100644 index 000000000..a21f82b3b --- /dev/null +++ b/TaskListRails/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/TaskListRails/public/500.html b/TaskListRails/public/500.html new file mode 100644 index 000000000..061abc587 --- /dev/null +++ b/TaskListRails/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/TaskListRails/public/favicon.ico b/TaskListRails/public/favicon.ico new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/public/robots.txt b/TaskListRails/public/robots.txt new file mode 100644 index 000000000..3c9c7c01f --- /dev/null +++ b/TaskListRails/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/TaskListRails/test/controllers/.keep b/TaskListRails/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/test/controllers/tasklist_controller_test.rb b/TaskListRails/test/controllers/tasklist_controller_test.rb new file mode 100644 index 000000000..fe14ebaa6 --- /dev/null +++ b/TaskListRails/test/controllers/tasklist_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TasklistControllerTest < ActionController::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/TaskListRails/test/fixtures/.keep b/TaskListRails/test/fixtures/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/test/fixtures/rails_task_lists.yml b/TaskListRails/test/fixtures/rails_task_lists.yml new file mode 100644 index 000000000..a5e7f7c49 --- /dev/null +++ b/TaskListRails/test/fixtures/rails_task_lists.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + title: MyString + description: MyString + completed_at: 2016-04-19 13:26:27 + +two: + title: MyString + description: MyString + completed_at: 2016-04-19 13:26:27 diff --git a/TaskListRails/test/helpers/.keep b/TaskListRails/test/helpers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/test/integration/.keep b/TaskListRails/test/integration/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/test/mailers/.keep b/TaskListRails/test/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/test/models/.keep b/TaskListRails/test/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/test/models/rails_task_list_test.rb b/TaskListRails/test/models/rails_task_list_test.rb new file mode 100644 index 000000000..9a9de7eb0 --- /dev/null +++ b/TaskListRails/test/models/rails_task_list_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class RailsTaskListTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/TaskListRails/test/test_helper.rb b/TaskListRails/test/test_helper.rb new file mode 100644 index 000000000..92e39b2d7 --- /dev/null +++ b/TaskListRails/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/TaskListRails/vendor/assets/javascripts/.keep b/TaskListRails/vendor/assets/javascripts/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/vendor/assets/stylesheets/.keep b/TaskListRails/vendor/assets/stylesheets/.keep new file mode 100644 index 000000000..e69de29bb From fb445f50e9ba3ab75157084b1088e9d116112df8 Mon Sep 17 00:00:00 2001 From: Sarah Date: Tue, 19 Apr 2016 14:35:08 -0700 Subject: [PATCH 02/23] done with baseline --- seeds.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/seeds.rb b/seeds.rb index de6ef27a7..ca710f848 100644 --- a/seeds.rb +++ b/seeds.rb @@ -2,7 +2,7 @@ def random_time Time.at(rand * Time.now.to_i) end -tasks = [ +RailsTaskList = [ { name: "The First Task", description: "", completed_at: random_time }, { name: "Go to Brunch", description: "" }, { name: "Go to Lunch", description: "", completed_at: random_time }, @@ -15,6 +15,6 @@ def random_time { name: "Nap.", description: "", completed_at: random_time } ] -tasks.each do |task| - Task.create task +RailsTaskList.each do |task| + RailsTaskList.create task end From 6617341448ca05aeb80ffb1c5c522c8bf3bd2425 Mon Sep 17 00:00:00 2001 From: Sarah Date: Tue, 19 Apr 2016 16:50:05 -0700 Subject: [PATCH 03/23] made some changes to schema --- TaskListRails/app/views/tasklist/by_title.erb | 26 +++++++++++++++++++ .../app/views/tasklist/index.html.erb | 17 ++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 TaskListRails/app/views/tasklist/by_title.erb create mode 100644 TaskListRails/app/views/tasklist/index.html.erb diff --git a/TaskListRails/app/views/tasklist/by_title.erb b/TaskListRails/app/views/tasklist/by_title.erb new file mode 100644 index 000000000..d5277be2a --- /dev/null +++ b/TaskListRails/app/views/tasklist/by_title.erb @@ -0,0 +1,26 @@ +

Task List

+ + +
    + <%@tasklist.each do |task|%> +
  • + <%= link_to task.title, "#{task.title}"%>
      +
    • + <%=task.description%> +
    • + +
    • + <%=task.completed_at %> +
    • + +
    • + <%=task.completion_status%> +
    • + +
    +
  • + +<%end%> +
+ +<%= link_to "home", root_path%> diff --git a/TaskListRails/app/views/tasklist/index.html.erb b/TaskListRails/app/views/tasklist/index.html.erb new file mode 100644 index 000000000..752e655d5 --- /dev/null +++ b/TaskListRails/app/views/tasklist/index.html.erb @@ -0,0 +1,17 @@ +

Task List

+ + +
    + <%@tasklist.each do |task|%> +
  • + <%= link_to task.title, "#{task.title}"%> +
  • + +<%end%> +
+ +<%= link_to "home", root_path%> + + From 59cbfec43d072db323e658f41e01b4f0a7e7e56f Mon Sep 17 00:00:00 2001 From: Sarah Date: Thu, 21 Apr 2016 16:59:19 -0700 Subject: [PATCH 04/23] nothing is working anymore --- TaskListRails/app/views/tasklist/.DS_Store | Bin 0 -> 6148 bytes TaskListRails/app/views/tasklist/by_title.erb | 18 +++++++---- TaskListRails/app/views/tasklist/destroy.erb | 0 .../app/views/tasklist/index.html.erb | 16 +++++++--- TaskListRails/app/views/tasklist/new.erb | 8 +++++ TaskListRails/app/views/tasklist/show.erb | 30 ++++++++++++++++++ 6 files changed, 60 insertions(+), 12 deletions(-) create mode 100644 TaskListRails/app/views/tasklist/.DS_Store create mode 100644 TaskListRails/app/views/tasklist/destroy.erb create mode 100644 TaskListRails/app/views/tasklist/new.erb create mode 100644 TaskListRails/app/views/tasklist/show.erb diff --git a/TaskListRails/app/views/tasklist/.DS_Store b/TaskListRails/app/views/tasklist/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0Task List +

class = "Bytitle">Task List

+<%params%> +
-
    +
      <%@tasklist.each do |task|%>
    • - <%= link_to task.title, "#{task.title}"%>
        + <%= link_to task.title, "#{task.title}"%>
      • <%=task.description%>
      • @@ -12,15 +14,17 @@
      • <%=task.completed_at %>
      • -
      • - <%=task.completion_status%> -
      • -
      +
    • + + <%=task.completion_status%> + <%end%>
    + +
<%= link_to "home", root_path%> diff --git a/TaskListRails/app/views/tasklist/destroy.erb b/TaskListRails/app/views/tasklist/destroy.erb new file mode 100644 index 000000000..e69de29bb diff --git a/TaskListRails/app/views/tasklist/index.html.erb b/TaskListRails/app/views/tasklist/index.html.erb index 752e655d5..4477dc1d4 100644 --- a/TaskListRails/app/views/tasklist/index.html.erb +++ b/TaskListRails/app/views/tasklist/index.html.erb @@ -4,14 +4,20 @@
    <%@tasklist.each do |task|%>
  • - <%= link_to task.title, "#{task.title}"%> + <%= link_to task.title, "tasklist/#{task.title}"%>
  • +
  • + <%= link_to 'Delete', "tasklist/#{task.id}", + method: :delete, + data: { confirm: 'Are you sure?' } %> +
  • +
  • + <%= link_to "edit task", edit_tasklist_path(task.id)%> +
  • <%end%>
+<%= link_to "Add new Task", tasklist_new_path%> -<%= link_to "home", root_path%> - +<%= link_to "home", root_path%> diff --git a/TaskListRails/app/views/tasklist/new.erb b/TaskListRails/app/views/tasklist/new.erb new file mode 100644 index 000000000..727ad3d26 --- /dev/null +++ b/TaskListRails/app/views/tasklist/new.erb @@ -0,0 +1,8 @@ +

New Form

+ +<%= form_for @tasklist do |f| %> + <%= f.label :title %> + <%= f.text_field :title %> + <%= f.submit %> +<% end %> +<%= link_to "home", root_path%> diff --git a/TaskListRails/app/views/tasklist/show.erb b/TaskListRails/app/views/tasklist/show.erb new file mode 100644 index 000000000..0dba67d1f --- /dev/null +++ b/TaskListRails/app/views/tasklist/show.erb @@ -0,0 +1,30 @@ +

class = "Bytitle">Task List

+ +
+ + +
    + <%@tasklist.each do |task|%> +
  • + <%= link_to task.title, "/tasklist/#{task.id}"%> +
  • + <%=task.description%> +
  • + +
  • + <%=task.completed_at %> +
  • +
  • + +
  • + + <%=task.completion_status%> + + + +<%end%> +
+ + +
+<%= link_to "home", root_path%> From 295d92a186d2cfb3e80a4a68bf6a76362a9e71fe Mon Sep 17 00:00:00 2001 From: Sarah Date: Thu, 21 Apr 2016 17:35:24 -0700 Subject: [PATCH 05/23] everything is working again --- TaskListRails/Gemfile | 5 ++ TaskListRails/Gemfile.lock | 7 +++ .../app/assets/stylesheets/application.css | 18 ++++++ .../app/controllers/tasklist_controller.rb | 63 +++++++++++++++++++ TaskListRails/app/views/tasklist/show.erb | 6 +- TaskListRails/config/routes.rb | 34 ++++++++++ .../20160419202627_create_rails_task_lists.rb | 1 + TaskListRails/db/schema.rb | 5 +- TaskListRails/db/seeds.rb | 20 +++--- 9 files changed, 142 insertions(+), 17 deletions(-) diff --git a/TaskListRails/Gemfile b/TaskListRails/Gemfile index d0ca1fdd6..9b08c158e 100644 --- a/TaskListRails/Gemfile +++ b/TaskListRails/Gemfile @@ -45,3 +45,8 @@ group :development do gem 'spring' end + +group :development do + gem "better_errors" + gem "binding_of_caller" +end diff --git a/TaskListRails/Gemfile.lock b/TaskListRails/Gemfile.lock index c45949a77..abfecdc5c 100644 --- a/TaskListRails/Gemfile.lock +++ b/TaskListRails/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/TaskListRails/app/assets/stylesheets/application.css b/TaskListRails/app/assets/stylesheets/application.css index f9cd5b348..ace1e9f75 100644 --- a/TaskListRails/app/assets/stylesheets/application.css +++ b/TaskListRails/app/assets/stylesheets/application.css @@ -13,3 +13,21 @@ *= require_tree . *= require_self */ + + +.by_title { + text-align: center; + font-family: "american typewriter"; + list-style-type: none; + background-color: gray; + border-radius: 10px; + height:300px; + width:200px; + margin: 0 auto; + + +} + +.title { + text-align: center; +} diff --git a/TaskListRails/app/controllers/tasklist_controller.rb b/TaskListRails/app/controllers/tasklist_controller.rb index 924b4f9d3..b9952c1a6 100644 --- a/TaskListRails/app/controllers/tasklist_controller.rb +++ b/TaskListRails/app/controllers/tasklist_controller.rb @@ -1,2 +1,65 @@ class TasklistController < ApplicationController + def index + @tasklist = RailsTaskList.all + end + + + # def by_title + # @tasklist = RailsTaskList.where(title: params[:title]) + # end + + def new + @tasklist = RailsTaskList.new + end + + def edit + @tasklist = RailsTaskList.find(params[:id]) + render :new + end + + def update + @tasklist = RailsTaskList.find(params[:id]) + if @tasklist.update(edit_params[:rails_task_list]) + redirect_to tasklist_path(@tasklist.id) + else + render :new + end + end + + + + def show + @tasklist = RailsTaskList.where(id: params[:id]) + end + + def create + @tasklist = RailsTaskList.new( tasklist_params[:rails_task_list]) + + if @tasklist.save + redirect_to root_path + else + render :new + end + end + + def delete + + @tasklist = RailsTaskList.find(params[:id]) + if @tasklist.destroy + redirect_to root_path + else + render :new + end + end + + private + + def tasklist_params + params.permit(rails_task_list: [:title]) + end + + def edit_params + params.permit(rails_task_list: [:title, :description]) + end + end diff --git a/TaskListRails/app/views/tasklist/show.erb b/TaskListRails/app/views/tasklist/show.erb index 0dba67d1f..64157eb94 100644 --- a/TaskListRails/app/views/tasklist/show.erb +++ b/TaskListRails/app/views/tasklist/show.erb @@ -14,11 +14,7 @@
  • <%=task.completed_at %>
  • -
  • - -
  • - - <%=task.completion_status%> + diff --git a/TaskListRails/config/routes.rb b/TaskListRails/config/routes.rb index 3f66539d5..6ff65092f 100644 --- a/TaskListRails/config/routes.rb +++ b/TaskListRails/config/routes.rb @@ -1,4 +1,38 @@ Rails.application.routes.draw do + + root 'tasklist#index' +# rails_task_list_index GET /rails_task_list(.:format) rails_task_list#index +# POST /rails_task_list(.:format) rails_task_list#create +# new_rails_task_list GET /rails_task_list/new(.:format) rails_task_list#new +# edit_rails_task_list GET /rails_task_list/:id/edit(.:format) rails_task_list#edit +# rails_task_list GET /rails_task_list/:id(.:format) rails_task_list#show +# PATCH /rails_task_list/:id(.:format) rails_task_list#update +# PUT /rails_task_list/:id(.:format) rails_task_list#update +# DELETE /rails_task_list/:id(.:format) rails_task_list#destroy + + get '/tasklist' => 'tasklist#index', as: 'rails_task_lists' + get '/tasklist/new' => 'tasklist#new', as: 'tasklist_new' + post '/tasklist' => 'tasklist#create' + get '/tasklist/:id' => 'tasklist#show', as: 'rails_task_list' + get '/tasklist/:id/edit' => 'tasklist#edit', as: 'edit_tasklist' + put '/tasklist/:id' => 'tasklist#update' + patch '/tasklist/:id' => 'tasklist#update' + delete '/tasklist/:id' => 'tasklist#delete' + + + + + + + # root "tasklist#index" + # get '/tasklist' => 'tasklist#index', as: 'tasklists' + # get '/tasklist/new' => 'tasklist#new' + # post'/tasklist' => 'tasklist#create', as: 'rails_task_lists' + # get '/:title' => 'tasklist#by_title' + # get '/:id'=> 'tasklist#show' + # delete '/tasklist/:id' => 'tasklist#delete' + + # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". diff --git a/TaskListRails/db/migrate/20160419202627_create_rails_task_lists.rb b/TaskListRails/db/migrate/20160419202627_create_rails_task_lists.rb index b7c00589e..ec32d5790 100644 --- a/TaskListRails/db/migrate/20160419202627_create_rails_task_lists.rb +++ b/TaskListRails/db/migrate/20160419202627_create_rails_task_lists.rb @@ -3,6 +3,7 @@ def change create_table :rails_task_lists do |t| t.string :title t.string :description + t.string :completion_status t.string :completed_at t.timestamps null: false diff --git a/TaskListRails/db/schema.rb b/TaskListRails/db/schema.rb index 937714bb6..945dd5ac0 100644 --- a/TaskListRails/db/schema.rb +++ b/TaskListRails/db/schema.rb @@ -16,9 +16,10 @@ create_table "rails_task_lists", force: :cascade do |t| t.string "title" t.string "description" + t.string "completion_status" t.string "completed_at" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false end end diff --git a/TaskListRails/db/seeds.rb b/TaskListRails/db/seeds.rb index b58f91870..45fb6d279 100644 --- a/TaskListRails/db/seeds.rb +++ b/TaskListRails/db/seeds.rb @@ -10,16 +10,16 @@ def random_time end list = [ - { 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 } + { title: "The First Task", description: "Get up and dress", completion_status:"almost done", completed_at: random_time }, + { title: "Go to Brunch", description: "With friends",completion_status: "almost done" }, + { title: "Go to Lunch", description: "With Family",completion_status: "almost done", completed_at: random_time }, + { title: "Go to Second Lunch", description: "With friends",completion_status: "almost done" }, + { title: "Play Video Games", description: "with friends",completion_status: "almost done", completed_at: random_time }, + { title: "High Five Somebody You Don't Know", description: " Or not", completion_status: "almost done", completed_at: random_time }, + { title: "Plant Flowers", description: "In neighbors back yard", completed_at: random_time }, + { title: "Call Mom", description: "Or else",completion_status: "almost done" }, + { title: "She worries, you know", description: "Or else",completion_status: "almost done" }, + { title: "Nap", description: "Yesss!",completion_status: "almost done", completed_at: random_time } ] list.each do |task| From e9a944ac03ce4fd2df31bc274aa51e5e74651e4d Mon Sep 17 00:00:00 2001 From: Sarah Date: Fri, 22 Apr 2016 13:36:53 -0700 Subject: [PATCH 06/23] everything is working on to wave three --- .../app/assets/stylesheets/application.css | 4 +++ .../app/controllers/tasklist_controller.rb | 19 +++++++++++--- .../app/views/tasklist/index.html.erb | 25 +++++++++++++++---- TaskListRails/app/views/tasklist/new.erb | 6 +++-- TaskListRails/app/views/tasklist/show.erb | 22 ++++++++-------- TaskListRails/config/routes.rb | 1 + TaskListRails/db/schema.rb | 2 +- 7 files changed, 55 insertions(+), 24 deletions(-) diff --git a/TaskListRails/app/assets/stylesheets/application.css b/TaskListRails/app/assets/stylesheets/application.css index ace1e9f75..05bad599c 100644 --- a/TaskListRails/app/assets/stylesheets/application.css +++ b/TaskListRails/app/assets/stylesheets/application.css @@ -31,3 +31,7 @@ .title { text-align: center; } + +.index { + background-color: white; +} diff --git a/TaskListRails/app/controllers/tasklist_controller.rb b/TaskListRails/app/controllers/tasklist_controller.rb index b9952c1a6..341e2c88b 100644 --- a/TaskListRails/app/controllers/tasklist_controller.rb +++ b/TaskListRails/app/controllers/tasklist_controller.rb @@ -1,6 +1,6 @@ class TasklistController < ApplicationController def index - @tasklist = RailsTaskList.all + @all_tasklist = RailsTaskList.all end @@ -12,6 +12,12 @@ def new @tasklist = RailsTaskList.new end + def finished + @tasklist = RailsTaskList.find(params[:id]) + @tasklist.update(completion_status: "done") + redirect_to root_path + end + def edit @tasklist = RailsTaskList.find(params[:id]) render :new @@ -22,6 +28,7 @@ def update if @tasklist.update(edit_params[:rails_task_list]) redirect_to tasklist_path(@tasklist.id) else + render :new end end @@ -29,7 +36,7 @@ def update def show - @tasklist = RailsTaskList.where(id: params[:id]) + @all_tasklist = RailsTaskList.find(params[:id]) end def create @@ -55,11 +62,15 @@ def delete private def tasklist_params - params.permit(rails_task_list: [:title]) + params.permit(rails_task_list: [:title, :description,]) end def edit_params - params.permit(rails_task_list: [:title, :description]) + params.permit(rails_task_list: [:title, :description, :completion_status, :completed_at, :created_at, :updated_at]) + end + + def done_params + params.permit(done_task_list: [:completion_status]) end end diff --git a/TaskListRails/app/views/tasklist/index.html.erb b/TaskListRails/app/views/tasklist/index.html.erb index 4477dc1d4..607b70128 100644 --- a/TaskListRails/app/views/tasklist/index.html.erb +++ b/TaskListRails/app/views/tasklist/index.html.erb @@ -1,10 +1,12 @@

    Task List

    +
    +
      - <%@tasklist.each do |task|%> + <%@all_tasklist.each do |task|%>
    • - <%= link_to task.title, "tasklist/#{task.title}"%> + <%= link_to task.title, "tasklist/#{task.id}"%>
    • @@ -12,12 +14,25 @@ method: :delete, data: { confirm: 'Are you sure?' } %>
    • +
    • <%= link_to "edit task", edit_tasklist_path(task.id)%>
    • -<%end%> -
    -<%= link_to "Add new Task", tasklist_new_path%> +
  • + <%=task.description%> +
  • + +
  • +<%=task.completed_at%> + +
  • + +<%=link_to "Done!",done_task_list_path(task.id),method: :patch%> +<% end %> + + +<%= link_to "Add new Task", tasklist_new_path%> <%= link_to "home", root_path%> +
    diff --git a/TaskListRails/app/views/tasklist/new.erb b/TaskListRails/app/views/tasklist/new.erb index 727ad3d26..6a4675cd7 100644 --- a/TaskListRails/app/views/tasklist/new.erb +++ b/TaskListRails/app/views/tasklist/new.erb @@ -1,8 +1,10 @@

    New Form

    <%= form_for @tasklist do |f| %> +<%= f.text_field :title %> <%= f.label :title %> - <%= f.text_field :title %> + <%= f.text_field :description %> + <%= f.label :description %> <%= f.submit %> <% end %> -<%= link_to "home", root_path%> +<%= link_to "home", root_path% diff --git a/TaskListRails/app/views/tasklist/show.erb b/TaskListRails/app/views/tasklist/show.erb index 64157eb94..e09af0938 100644 --- a/TaskListRails/app/views/tasklist/show.erb +++ b/TaskListRails/app/views/tasklist/show.erb @@ -1,26 +1,24 @@ -

    class = "Bytitle">Task List

    +

    Task List

    -
    + -
      - <%@tasklist.each do |task|%> -
    • - <%= link_to task.title, "/tasklist/#{task.id}"%> +
    • + <%=@all_tasklist.title%> +
    • - <%=task.description%> + <%=@all_tasklist.description%>
    • - <%=task.completed_at %> + <%=@all_tasklist.completed_at%>
    • - + +<%# I didn't need the each because it only returned one thing and wasn't an array"%> -<%end%> -
    + -
    <%= link_to "home", root_path%> diff --git a/TaskListRails/config/routes.rb b/TaskListRails/config/routes.rb index 6ff65092f..957ab737b 100644 --- a/TaskListRails/config/routes.rb +++ b/TaskListRails/config/routes.rb @@ -16,6 +16,7 @@ get '/tasklist/:id' => 'tasklist#show', as: 'rails_task_list' get '/tasklist/:id/edit' => 'tasklist#edit', as: 'edit_tasklist' put '/tasklist/:id' => 'tasklist#update' + patch '/tasklist/:id/done' => 'tasklist#finished', as: "done_task_list" patch '/tasklist/:id' => 'tasklist#update' delete '/tasklist/:id' => 'tasklist#delete' diff --git a/TaskListRails/db/schema.rb b/TaskListRails/db/schema.rb index 945dd5ac0..78f29f2c6 100644 --- a/TaskListRails/db/schema.rb +++ b/TaskListRails/db/schema.rb @@ -16,7 +16,7 @@ create_table "rails_task_lists", force: :cascade do |t| t.string "title" t.string "description" - t.string "completion_status" + t.string "completion_status" t.string "completed_at" t.datetime "created_at", null: false t.datetime "updated_at", null: false From 23598bed33fa6165a3df819f0e38ee6e05ae0077 Mon Sep 17 00:00:00 2001 From: Sarah Date: Fri, 22 Apr 2016 22:40:29 -0700 Subject: [PATCH 07/23] everything is working --- TaskListRails/app/assets/images/face.png | Bin 0 -> 491250 bytes .../app/assets/stylesheets/application.css | 26 ++++---- .../app/controllers/tasklist_controller.rb | 5 +- TaskListRails/app/models/person.rb | 3 + TaskListRails/app/models/rails_task_list.rb | 1 + .../app/views/tasklist/index.html.erb | 59 +++++++++++------- TaskListRails/app/views/tasklist/new.erb | 2 + TaskListRails/app/views/tasklist/show.erb | 16 +++-- TaskListRails/config/routes.rb | 2 +- .../migrate/20160422204902_create_people.rb | 10 +++ ...60422212851_add_column_people_and_tasks.rb | 6 ++ TaskListRails/db/schema.rb | 10 ++- TaskListRails/db/seeds.rb | 4 ++ TaskListRails/test/fixtures/people.yml | 9 +++ TaskListRails/test/models/person_test.rb | 7 +++ 15 files changed, 117 insertions(+), 43 deletions(-) create mode 100644 TaskListRails/app/assets/images/face.png create mode 100644 TaskListRails/app/models/person.rb create mode 100644 TaskListRails/db/migrate/20160422204902_create_people.rb create mode 100644 TaskListRails/db/migrate/20160422212851_add_column_people_and_tasks.rb create mode 100644 TaskListRails/test/fixtures/people.yml create mode 100644 TaskListRails/test/models/person_test.rb diff --git a/TaskListRails/app/assets/images/face.png b/TaskListRails/app/assets/images/face.png new file mode 100644 index 0000000000000000000000000000000000000000..f02e5dac399f078052a6c5954dfeca7d6ffd8cc3 GIT binary patch literal 491250 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

    `hGmeu%QHk}Qmcw?sCaJ&YiI-;JFI`CAT> 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�aReO}JXZB=a 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

    @zk9|_wwGsbq%u1@xP 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%0D<9kJ8Dr;w()5oOtcAX<~RAET$gTRlu&idG)&BT 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

    ti!j;;4b(ZeTCUjA)4E=jh$1e)rw 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 BFGT -

    + <% end %> + + + + <%= link_to "Add new Task", tasklist_new_path%> + <%= link_to "home", root_path%> diff --git a/TaskListRails/app/views/tasklist/new.erb b/TaskListRails/app/views/tasklist/new.erb index 6a4675cd7..8c26b4987 100644 --- a/TaskListRails/app/views/tasklist/new.erb +++ b/TaskListRails/app/views/tasklist/new.erb @@ -5,6 +5,8 @@ <%= f.label :title %> <%= f.text_field :description %> <%= f.label :description %> + <%= f.label :Person %> + <%= f.select "person_id", options_from_collection_for_select( @all_people , "id", "name"), :include_blank => true %>
    <%= f.submit %> <% end %> <%= link_to "home", root_path% diff --git a/TaskListRails/app/views/tasklist/show.erb b/TaskListRails/app/views/tasklist/show.erb index e09af0938..6da6b4d3f 100644 --- a/TaskListRails/app/views/tasklist/show.erb +++ b/TaskListRails/app/views/tasklist/show.erb @@ -1,9 +1,8 @@

    Task List

    - +
    <%=@all_tasklist.title%>
  • @@ -14,11 +13,18 @@ <%=@all_tasklist.completed_at%>
  • +
  • + <%if @all_tasklist.person != nil%> + <%=@all_tasklist.person.name%> + <%end%> + +
  • +
  • + <%= link_to "home", root_path%> +
  • <%# I didn't need the each because it only returned one thing and wasn't an array"%> - - -<%= link_to "home", root_path%> +
    diff --git a/TaskListRails/config/routes.rb b/TaskListRails/config/routes.rb index 957ab737b..afeed8d1a 100644 --- a/TaskListRails/config/routes.rb +++ b/TaskListRails/config/routes.rb @@ -18,7 +18,7 @@ put '/tasklist/:id' => 'tasklist#update' patch '/tasklist/:id/done' => 'tasklist#finished', as: "done_task_list" patch '/tasklist/:id' => 'tasklist#update' - delete '/tasklist/:id' => 'tasklist#delete' + delete '/tasklist/:id' => 'tasklist#delete', as: 'delete' diff --git a/TaskListRails/db/migrate/20160422204902_create_people.rb b/TaskListRails/db/migrate/20160422204902_create_people.rb new file mode 100644 index 000000000..9ddcfdfd2 --- /dev/null +++ b/TaskListRails/db/migrate/20160422204902_create_people.rb @@ -0,0 +1,10 @@ +class CreatePeople < ActiveRecord::Migration + def change + create_table :people do |t| + t.string :name + t.string :description + + t.timestamps null: false + end + end +end diff --git a/TaskListRails/db/migrate/20160422212851_add_column_people_and_tasks.rb b/TaskListRails/db/migrate/20160422212851_add_column_people_and_tasks.rb new file mode 100644 index 000000000..e799c4331 --- /dev/null +++ b/TaskListRails/db/migrate/20160422212851_add_column_people_and_tasks.rb @@ -0,0 +1,6 @@ +class AddColumnPeopleAndTasks < ActiveRecord::Migration + def change + add_column :rails_task_lists, :person_id, :interger do |t| + end + end +end diff --git a/TaskListRails/db/schema.rb b/TaskListRails/db/schema.rb index 78f29f2c6..f1da7dc77 100644 --- a/TaskListRails/db/schema.rb +++ b/TaskListRails/db/schema.rb @@ -11,7 +11,14 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20160419202627) do +ActiveRecord::Schema.define(version: 20160422212851) do + + create_table "people", force: :cascade do |t| + t.string "name" + t.string "description" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end create_table "rails_task_lists", force: :cascade do |t| t.string "title" @@ -20,6 +27,7 @@ t.string "completed_at" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.integer "person_id" end end diff --git a/TaskListRails/db/seeds.rb b/TaskListRails/db/seeds.rb index 45fb6d279..80ca264c6 100644 --- a/TaskListRails/db/seeds.rb +++ b/TaskListRails/db/seeds.rb @@ -25,3 +25,7 @@ def random_time list.each do |task| RailsTaskList.create task end + +Person.create(name: 'Honoure Afflect', description: "" ) +Person.create(name: 'William Adolphus', description: "" ) +Person.create(name: 'Edith Teisilian Ethelena', description:"" ) diff --git a/TaskListRails/test/fixtures/people.yml b/TaskListRails/test/fixtures/people.yml new file mode 100644 index 000000000..1a15e3476 --- /dev/null +++ b/TaskListRails/test/fixtures/people.yml @@ -0,0 +1,9 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + description: MyString + +two: + name: MyString + description: MyString diff --git a/TaskListRails/test/models/person_test.rb b/TaskListRails/test/models/person_test.rb new file mode 100644 index 000000000..ad04ed813 --- /dev/null +++ b/TaskListRails/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 d2534fabee01330930e265d8d47bb73c89ade37e Mon Sep 17 00:00:00 2001 From: Sarah Date: Mon, 25 Apr 2016 11:20:13 -0700 Subject: [PATCH 08/23] ore changes --- TaskListRails/Gemfile | 13 ++++- TaskListRails/Gemfile.lock | 8 +++ TaskListRails/app/assets/images/note.jpg | Bin 0 -> 8482 bytes TaskListRails/app/assets/images/notes.jpg | Bin 0 -> 1826504 bytes .../app/assets/stylesheets/application.css | 52 ++++++++++++++++-- .../app/controllers/tasklist_controller.rb | 4 ++ .../app/views/tasklist/index.html.erb | 48 ++++++++-------- TaskListRails/app/views/tasklist/show.erb | 2 +- 8 files changed, 95 insertions(+), 32 deletions(-) create mode 100644 TaskListRails/app/assets/images/note.jpg create mode 100644 TaskListRails/app/assets/images/notes.jpg diff --git a/TaskListRails/Gemfile b/TaskListRails/Gemfile index 9b08c158e..27928ea71 100644 --- a/TaskListRails/Gemfile +++ b/TaskListRails/Gemfile @@ -4,7 +4,7 @@ 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 @@ -35,6 +35,7 @@ gem 'sdoc', '~> 0.4.0', group: :doc group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' + gem 'sqlite3' end group :development do @@ -45,8 +46,18 @@ group :development do gem 'spring' end +group :development, :test do + gem 'sqlite3' +end + group :development do gem "better_errors" gem "binding_of_caller" end + + +group :production do + gem 'pg' + gem 'rails_12factor' +end diff --git a/TaskListRails/Gemfile.lock b/TaskListRails/Gemfile.lock index abfecdc5c..8c1f700d1 100644 --- a/TaskListRails/Gemfile.lock +++ b/TaskListRails/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 diff --git a/TaskListRails/app/assets/images/note.jpg b/TaskListRails/app/assets/images/note.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c883c0b3108b44cfb5cd22e3d8196c21edabc24c GIT binary patch literal 8482 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 literal 0 HcmV?d00001 diff --git a/TaskListRails/app/assets/images/notes.jpg b/TaskListRails/app/assets/images/notes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77b88ea5a31f7ef98d1efee0f2c61ee28c2dfd6d GIT binary patch literal 1826504 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
    ^AZ%TlOp^n*3I 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 z zfS&PJiNKlseRt#OI_%V8snbcYP<>kq`g$_4{{67)hsZQar^+|1;8)-SROO0Pl>6JGV2CTt$M+@bF@D_;68zHOc%UN72!kbvXiaFCHRx&kUFzD>4H`AU$$@hd3 zPJ}ZRzUYb~n!W-a2!*Us)@6=LTL@)aMzfklzD1d3T9P(OA_(S4#YhBJ zU+Hk&e{!lPh4QSEw3HA$SYBBYZ*;UXLI@=C(Qyi|q3Bb1?~*8|*?mQ~0@RJI=hTAN zL+)Gt9 z9Zy?*8N)Xj>5JNci*qcXV-qnNl`LLc6)x~|#?z2|M z2vs$1nhIFu-s>cvZ-2E$AKPk_l0c_vKP7K?lLIh)%5m_rS*0v4y3K1p-RmI+pR8u6)U34%mqBaQIVPHfMNrs)GDf09thMM5zNF1}%$uGn<$+X{5^C(EL8aix_*7Z__d zeVab%@VYRbmIr%DJPj2x%sOU2I=yr9%W}iSL19k0eecUO*ut%~kgwW1&*&$tJcTq< zb@6~!Y1)CMFu8E*?hPMC5Bx7XdT!fgFGpTDm2;XDQV@j>OjkiC9(g4HT+#lCdppb@ zi40iJuX+s?HSxI}6Qyqw<>YZ>BvaK=)$*+xEffX<ZDloQYfUDRdd3w#`19C$Iw15>+~3{9u>ha$o@4chUdn=yiVlomYyoOFj=t??Pa(OzdaYDC zE8V_8iymk9PD+gT`z&sj^M)h>HsqTsLA3R1PuGVH z{>?LN+DL3fe&29O+A84~XR6jg*h1rU)Rtzj8I_K}NINymosFho+gjs#Ismaa!8cB>X(D3St4+wD)dFIT2Ts-@RD(Rq%J!sq1M_SZlKt2yU&w`O}$^_gM@_`|O^H}yDyWM+eu6g7J&Qnm&EXXB>L zUKnk}0OY6&>eD|b4P5Jrw zV@Z($F2)R;m0^|Um>Rz~tlau0&iFzqYtiO|YoJjOe*g5Zj!Q)Ux;v**McKiu%ETN~ z)YKOEH`I<4zj`wk3>2;uYbwZWni^dh2~lV5IGq$>vPzQxTaMt)1+dLo))vp2oLA(b z&+FTw1xo(#toJQsY&9$BC&wm4eZ-1vWf{DFJ9yOiCg{(d1@ht&11_+IbSLFD-=o2y zb)R-a)|hvgcODuFbAmG(W1N2;<4>})Scx{w{bw7#OnnLb!0pSLfrsV6e^?t!h%sdX zQ$1?R1m@7zeLG+ALe>JTd-KaS@B2qZu1pV@o=r6z*mn|=gC7_Qux9HV%r#jyOoE!4 z=h1`l`E||xqs%M&zul)s9MEltDP|4Uud;++xuS;w=~V5NJB9KVe9w+i9}q*7=G{7f zeOs*QWl3h)EB^khsa37=MXd@{gKRrq2IEyT<zvvip6_Qd^Wy) zX+#NR0l2JZPK2mYZo(Z3U=f&IVJ*?Q< zB=Zn^?tP(axRSSOfB*∾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

    )~O#o(iYmy9K?yUHkh+_VX_pS4yNF7G~S0 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�Phty#nV;mk02B=Q$YZQ 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 z z&8uq?O(v^wA+&-!h@-cH1NiaqkKlHd;QbmsV@lCr(|lL)dVM=j@ScGyOjF^%fHi?< zqI@~pEPdUzK#4g*G<>1-gYC&L}=!9aH|ro^#l(zZVd4f z+k-Gr=&A!CB~IqrB_>4*TW~`jH#(q2E0V$wGb|coxW+KY$!`&0?U?TyfE7#8#bMZ2qDl0IHF6al!90pCTP`VSn~2V z{iGvCxIr5LS~ST4U5bnhSG&4+78DNBvs@d0m=}z@VrdXI(gqmq48hu8EtCagk(-=a zdZv;}R!KE>lD(R~(MubK2vLLcu9cptCf8d#Me^SFYW;dPkGVc4 zd};9i0Kuqq4NJsVr{ZVDUlZF$FNS<8Zi2_d+9`dYH;3#d-nw?1r%DKa5Na|10Bqkg zAG1V;ZIM#=HTx=jTK%GR#rU85PU{-Jm!U}{l6Zf?)-5DxZ5*Vq!KK^Jy>!b%7z-w` zbszTC#@1L?6xlO+KkRw%BjHcR4GTd1tGrXD-26cCPlW?w%4*rEiK&Mt}aR*&XuY1-AbjGG?P*9s`O8@*7|06 zU&0<5@J^2omEm0rPSEtoV+$l&b);7QXb7>7G2%_~%_OLTTZtLxpA2ShRM%MyilcN( zAY@I<01V8|HnGcR$^(Q@0Bx+>*qx%P1ZiV2$mMW|P^(C&Bz6t8;}~6mPU#$|+RYdl zAR1sL14kf4+OeX%Yqd$=u_9tvmz9WTEO$E)u31x)>nU1Mv{Y4=iCWf4JuJNzt4_Nf zWTVe}$;wUZCfjdVt@~Tk$uy0zJd-mbi4+JvW(XX}O`XrUqG2>_W@0FFj-vH6lPRWPnYM9VH( zL?o5~oMBn2*ttTEuLP13BhSuBQO*(~pr{fscG}ryQP7;%M>5jyWY(*9c&!>sWUTkU zm5z57te45ApGEV(Ud!{Jbav(CW>4Mb1!&C0V_TOi5eUj6ZHO4ev68@LPeMxFU2GAA zX=GK74>}}c76XD%yY0`I%7Ru!RxC4;xD?#RB38!uRiu&ECEZmEI!NkR6`ZaxNeos! zs(xnOi4Dcw<6SM4su+>oO~us3KYos??`;f3xs92`WRlq-@XD)(r7l#pz1GQJWSV>F ztLvrj+f<`;_R`7T+B>V?Pgm<>suN1^0y4_QopBtJz5^1f=vibkh9t-Xfv~R90Kk&i zqFgRvc3`rwcZ@hiE&Isahjn*%00^0P79q;xCa_Wq`$ZR1Mz+iq`U8Tk|*P&?+-++Oe=DglOB=1yV6HkQ*Lp zT&!r{E>Hr;ZYoHNm`h28i3SXSK#T;dv`Se?lWd0yyMt|GkTOM3h2%&WtWrJ+2@=Kw zO3Q%KDV6plN=A0MN5pPOVoqeRy0s1VcDPoMLK<9{L0MM~%I+YV z?1bXfZmi`SZ>Keun_Z==wf1XwqsCBrwPxcjG;geR?b#-`Yg0lC`#9$Ep?%jj>m9w* zJNc2us^o}3BX64`N#?+p>Or)qcup8XI(;MFu^IJH$$?fQAyv zBSmeBrInpymz4x6mOGBIZP{Jy+IsS>R?l5h()LDEjh*9ns^3{Qt**M-_gZ}RHzJ8j zMeF`Xb!7C_zPjn=xqf&{nkl6ErEa}9 zZtC}I?rP;0hT_u+A|Xi}DUg*|#lb#fq){E)!ee7L;I4|fCBZeJETI93;0y$6{YyWV z6Zec2M*jdV6y8+s7|z9F>;bUhrG)MxA_-w6PP@KV3_kYd3n<870cRP*a7l(}hm|7C z8Fr}5kg+)h$w-x35*cQ69%k$>-7%BMtu3S7tG(>)+eNkQw-k4+Z*TruH4QA4KqA)@yNg<5j z1%^f|v+XDf7mdlwsyNvh$*-*>vyof(MbQ{yNWzHONR1TB@+pwB$P8o+h9FC40dwab zBhpsjPYXj7(|NKWW+qjEK+L3uSl0ntYB3McZ72A-F_b;E2NadljG*3%_g{)yd1#)e zRvM(EQCX;~{FdGC*M0h<`0M`wf`|Uk{y6Y&iSPVp;Jq?CJyOzBdd*>F=f&jNJc|_m zSq&VP+KiLU=C8~nS$yYEn}Phx@PEdigX^d2dQPFPr@-$S-!-~;i$>I@^85+nyNKXE zW#*hNZ68LrX*d0zTbpZ(IGSK)V+7Hpul=Nc(tiUid_$*e7k74TeWl)6JR0VcGnJ98 zptg|P-)Ymwhqk_lF0Bf)Lo`JTppgMT$o~NCL;EM%_$S0GYklFlth_hk3yYmwMQg7t zOJjQ}g6b&d)9!8Nww_NWD4yX@mlelDkjpaMhG~X71_9YLa(SYC73CyFQkC-89(Gh2ON!x9~Y7zVN@s-v@ZB z!aA6}wz%*ntD$)!CAgK$@_0{L(=KoAt{ywFh@_G!RirLlZYo#kFAIOcQG9MMG+1o@ z9Qe}m!q(prYSQ0n`gObz4>I2FNpCfa3t@88tf&=le|sc$>E$y9`F|o;;pVg90jo>l zAB*sKYtGcSO8Tykqb{9qX2~S8M`F@ggQwmJnH8?5NJ&7*(Mn?Ti?rQ$!?ssuEo;aA zB>0cwNaPogKqQLlA3Y;tZf?!oky*3C=wpH>M1(HG3{G1$$y*JF_BAVD@gH1Ca>A5o z;v(q9MSIngqe=^v$|_QI+LOC!rg|$C7|Epz!A32&8@098x7*Wwu726+-?uNt&lFsx zw6oh->9gZu)wM6T-AwXcED=QwmAouxxLBllh0V!yw?$a?h(uNLig=#a#a|PCD||xn zj-`2~=@yXqOF>;;M3&}TrN7r2%KagC-3_B%PPW!pTBG@iWp1~t84Oyyv%r^7riEeR z>7ns#7a|L}ZWi`!5;G*LV)8uh@&5p%C6%(WZ&@btWiFy(tF>3seiZ4)#JY#X?+vsN zOQLF@4fM-|xSj3qCW_-ozq{07y|dG;X4?vC6I>>u(zzqcw3G=QnT2??DT{7M%*`T#ZaO&%M10{SB;{6j> z@xHAe!*2uW{vo#Tnq18OHu#qf#kIBWzpA~&(aO4A#L!9RXs=;&C_06i7dn)e0K&?v zhy7vkC&6pKig)*m;$2qnL-0nCpy_jXhIl55-oon1?QQj4Uh7c3xB@usG%&MWvu|4^ zKWl4+-iT}LPuR2ebog8GN8#Uwd}(jti)8Ri&#l>fKf2VC&sLXK@b;Uo-Dz4kj4iG$ z)u&4^I&)ag1rG@>G&_Icm?AT=9x(E>X4O z=gh9J%G0ryHyIzURH+!b#WbONrD&+e>d(nq>0a$6vp*?*8GgYU_ldM^H^F*0gEZX> zz!nn4JbF%~6IIu|W2#5xPZx+hO>J!zwY{uyxK`72X{EbM2nxw{5WJL#zV-0W{1acr zcbaPpy+c#8Xy6dbb!4#VacTA|10k}p^HNsRY>Y6VovhhOQr>L9G0*R}fc_15XF-7; z)5CVQhTa(9f#Zo|xw?^2RepGtL}GHI&ffB=Qdvs20bdhpe+5^={{RvG7HeK6i&EDl z@UFL@c$dST5{mZo#SqQn{W47=%fgyX&8@ulF?i2bT|yYNUl0AUwaDX=9a84XJ1D2P zUrP;_%NbcY(REa+drGydxz%oUITWh3HlrEIB-=?z*lA?rn7|Np!CfY1)dd%&_YcSnBqdcd^{v ztM}6OW4h{>XIV_=Dsoh%`@q1KZ5jm;jl&Uj-%tRh~6T2<9U7kECV z9}0LVX#OYg?ZjRu@s6b?r4ND=Ptg|d!>eziD}$`+nq|yZHs;4!)mRmH*!tIlzhbL< zYuk-~;{O1M{{Z1>_`gxt;_=406|Rd1hr9!A<2AO1(@nm#(FM)UrQ!kMOFMYT(SPvH80u!07jDL`R27Q`huj>K`dfGj}Rb9 z6v`jVa?Dt=E@T)83IfB)JX!lV#v-|!Otpqks&`r4DlX*_l_95fX@a>QHVX*UZe{t3 zH<2m|6(r|}sTi(z`6;aTHv3~HD65?Jdtdh3g=3sJSV1lZi%T3WnU`W~+a(-gX`y|vDlc!D>* zOL>Hnwg>G?@VfTRSL27n?G3cw7-^RF?c;9@D%#DZc!NxN9baA0wJU3dY2%gTp5$46 z{{VDfX|hi(T_UgDAKPE{Dbl=8U_52uy&gRq;xC3ox||mAS};q-frH7iXxcd@Nf9NF zWK6$k4g(?JKjn9TFKv8Ld8&9H#2S{j;Qs&=-)Wb6P3DQ>6pv8w?ajrl)?@n>t>j?X z-dWvS#VjwU>JZ8m(h033l#>2jT<|rON^wTIjwm`vlNicpqAp zJDn%QNPs+|&4IXmI%`%ZQqgWL!$kw1v)snMTD5-De#5`Dw}`$LYuY}W;!9T2^qng5 zG}JCECY$R(7h+z(qYMK?zyce=!E8BSs$0h_l&8%vAJCnn;EHwh^mzqAKwg_QR%2(z!=|2sAGWesz zz9D(-udIA+qH9_-8h)px$2=Nk{=0Jx$|7Fg+;5t~<6f}0fAmYVTPb7-Co#Y*v%Ue5McY2QTdlU*K* zQ~e{n58_QL#rg)Dtk_8aI;D-ar3*o-CaVR_n*dnb+^LQvWK@kVp&?!=cu>kqH#s+i zb&38p*m%wvw6o!DAK`AT;XOV$?qz*WFB5o+#u{$1tX)04@%b`XE{mktTiabUrP}IA z;xPGmar~nG$=~o&>(7BYq+T8IUZ<<-J` zZLXybBS7rigDQP?U!PH%r9!Nts=G&>q~j#iR<6xPQuNiOZtLZ-IbB+Etx}8jl-2o{ zSSQNTweMxM)$M1#$JctcovdGLmX<%-7cyG3Ci47=R?^jy8McV6;kALEk&iIEqibOi zPU1&lDsO0+;*HE`Dovn-wyvplvUqJU(P~J}fXacRehl=>K zAN5yHBugwYEP_)iIe-AhGb3%SmY#SmyqljUJLwA~QO3?ARK`@vC{~sz_MFN0%Y%S$ zb6-OVLEcf5mp8ng>dMa7dMBl~y_Zc78ltGVBPGh>xovATepM#Y>a4na(HofL^PV?J z{>dfRqr6a`Wej8+JH|~A8h_)OY zFj81*%YA+;y74YLq z(y43f+i|;E)uLGBG5B{*m|QD)V^X-WhC^E39q@!&6yIvOxSLt=7Nu@iSMd&_i28-( zYbl?|Yn4H5VWr0_DY4Ns;}w)8G9#8iXFWEZqu6PBb-taZS=-xb_JM`HwX|&<5r=$C z!XU)Fl8nha$jt99Ws*r`Y}T83rwXNHB|`}cksbyDxycz34iz#0C5q*P0O1W3q`l?J z(px9HYg=C0Z}_rhEiD&iYd=Jy?B8qa=ViT&`*oGrF<{Xg#zQgkn7VNCWHSL7UFooZ zN!r1in$c(khjNj*nlkK3A>9B2AaXzfzIisBk}z-uLbmFsaSw(gIA<9c1d$lq8Bzl9 zyF)2Ed+xN7DL?AjoVFy4xNYQez$eN!>^$MJ6h?O_6{HhOTiv_r(`!!eRi>7^)XHt% z>8tJ0Z)V^5>F2Y$5AN|GW|Nf)lBph8JA(w3i357z1yu?##GI9B-Bpfz))}wa_OC@fDi(< z;E1^%V{SjX!bq$vzLP)9sxtZtI)Z7i0yv$KA7w^gZp ztw|?l?wz{pX76h#{PlX->R@T!9GmTFtn1SaTUN}b+88%Qq-gOft#3!q^^91A3}Ik#4o z5)?v6+{&)ZOiDvCoE^kuumEDwi5gWxpnyXvq;AQCQId?mDu#2tqg>}0&N&N}a>++V z`EPx7vex!V^y>N~Uo%ZzX%}>o?QgTL*Ig2N*)7cXjgHXD`?j5}zxN?+_4xx>V^scMnV>GfXDlzP^e@?iPcqEodG~uP?B>dbGLas7CS)4 z1CdqysNx}l`DF>-!5!3=PzK$g0;`R|umQjuFe%MSO3PKH^;T-@MEj<-)i-VSM!(nf z{b)d_iI)N9WjvUJ2^Y*8mmz`5hulh@gFOJvR2K}4=%QPjfaxCH>JcMj^0TyqVtFSn z#ZKoL8%f1qE%yR21294jyY9QOuRVOPw%Y2guWfYPtYNwX&31&`E8zr+s~%Bu z_X-fau%JwYAn%h004X&)qcTQOomen-GANUC5sYpiE=uk>KtRg(%{>4xM)K`%FsV@{ zOL8;2E67&BR6=uulaH35lpW!YKm{8pOBFnqQIJVf^L5JxU7#FNlw%!M&!cYo+1=Xq zzP~Fg1HYD@pQir+e{wMkwC<|2e)=_ur)Or2Z+F@vhB7?4BU17_p;ewRs7n zW$}mOXTu+Wz7V?c$Hi|JY5o?`W6D~IohH@w-9Vv{be|4sF?pJXx2epkBU?)-BoHxY zxRTlxc?L6`I&hSyE?!++r0lI^`)sdoI~52@q?92R-eGjPw9917J_w;g?|Jky@m@v2k3WgapS*<#7-6~ZxP(-rR2PaQ6)rP5Yl670+Bju zSC>Q`xIYHJW-T7Z8$TR;f7D>`H-W5eVOxKO&8XXH`o^`V$Y3_MUNP0|q!!jz*AoJe zcza7^yp&FDF7C(-mGao^?bK7FgTF1g6wNY`Q zAC6JeSvPxVwQqij>S}x%_(|jMjlLw+_M$FHd#0gJ_MVf)YUeP1Ae}@H6%t@Gh>B>tO}Ud@@u!P*Jr7F1 zm2HFE-CO83^UWMKu)JunS?M}<`K}Jsk*Aq~Z^+-;oBj(e@Q?OqvWMY+?APJ14S4Iu z+HJwnt-Lv;#9;8hh71bjVfH&&}oGpLi7*?iH9vPnORQfe_t>e@)_$L1}?QHSoRE>#K?m%TKsuO}P1 zKj!cFpR3=t=lm9%SN)>ykHUZ1D@XA!f_@#vcx=bUYpL}M9~yi>mh#YBUFjYK@P&X| zt6MlGmRm@!FD8=mc>>7mVQl1|nEoGr$bLK3{0HKXiQf|M7eThrG<&ZXS@?6rb80%a ztKvOq9KnC%>-{j?-$^E+E48Fr29nYUTI4}Iu36M~AMj6q*)r!$@fN3l@i)W%D)4{C zuK`FrJ>y>vYUyRD_z%T;HmL8ZcvHrn0@Pu!lT5bL8qycFLE-zWE12X4+h4OX`AmO& z{5|1)2TRgs(k9cbt~A@rFR|R(Np59Fw~`N@Iie`MWQhd13}idvF}j8x^&A~MHYQV> zjOr+)?Hj@^MK@;Mr6*+hm6p0Bm6w4zN^$1e5q3~b-QLN!t6g@wdTXIa_FuR~{hodv zN2O@jxQ|MGC-494hUS%rf&hl@TPUwD_nUl{xi zs95-4!8+4;ZT>Fl4u9bub+|HI>C^a@&E}T%Y?{tXRbLYrk!B&^QHVHsWZv=L?c@6| zd_0EU%U$@l;aj~~qe$CB@U_IAGS%V|W_ZAhLl-uXM8J}-b#RK(Ng0>R+{!vC*QY`* zb*fXP9WLCJqqkJ_c6Ryeauq4cX+|xlYiQQ$F8b|jtye|SA8F|xHSnj2*HY5-Ul8e9 z{oau@wpz8E7w}JgrQTcI`D~X~C6eX{)^(BlU!WNFCveKlo>9BD5~2cU8xtEqynIy=X1ng@KDjF{BQBUkNgMl*27%133YMs z_UBl?*8Dqhq^<6hEIeAiD|>0Gb=BQe z588wFh45F!U3y;(T6jyu`u_lmw2QBZdiIs4`18WvAbm>J^q+`-1O6ylP4;~T+C4lb zkK!K#$$bnqR*`A4-Dx*IZm5;(zp}^e31{K2A7B2=TK=)6c+sr&PZQq!E%=k8UD|!O z#Xb{lXI0da`^1(3*G*}m7Z*_tcf#)`pDakJEu0d3)%g+OFZd=;?T6wU&-hC|A^a+~ z@cqY$b#Zkk{48&YUK+dcZl`^yd6)N>I-ZYVKD#tpo#IC=#p7N}_VXJ_=D_b5QTm7Q zBmN1=;_n3bm%zUe{A2L~`a8c0&nr?ng;g1i)WvTd=_Johb_P1XHEIuD!Bm8La&xmd# z7I%I$@OF!7V|}S=R(96@R9CjJuA0}-vPorq9mT#zJeo)CE%7(uvUnrGUjsCc*?P-U z{{Vz1#a=S_+wtPs*2m(*@P>ZuH|c(T4M3bc+;6$XJfhC%Nj``k=@qjc4c{|iwX{KkLHCH z!&f`2S}L6eqN&T7Hnr*1JKbMJeH!lc@1c}JjNI$qZMfMj7Kv-~)oiYkTO;6`Z}=zY zfP8VOS@^^Dl=!XjkM^wb1dTb_-)|%biFPJAd!G*b(u9~ zw(`*(-*cDyOTxbmJSX6-BHO~A2JpX!JSXAXG=WBw;R_u*!}?+f?Uf_Cy0+7;tQzii zi9*cMM?afB)?(5QcXaz^zSQ13myD!Q8Lo@NEGZimG2E@i>&xVnG8l!uv>{_}nn_7P zlh(m+YD}US=L%jZt=jr1qlRaKSlJ_K;U!{!Ia)-LK_kQgX%5gHxLoRDC(lw+le$uE zw3@PQ@}!cxe1I`he+D{}0V(em!fK`E$ z=8XUfTFTTpxRs-8HD!@ib~4;$)=ij?DE@p+BvPHL(Sn^Pvqsd-l(}|vOVyG~V#e8? zF&s?FUwp3#iCQBRytqDY^mYTLHsn#Vz5Unarz*Xb)6=chlhL~p^liCmX40C5lsgpMLE2c5>T!`$D-{CU$+wDomSuAUffnlWNaNispsm0} zF5kUbe6?1YRSds21?w~#gc%nEO*FSLc^5ufNRZpi9!OlD<3B;tW)M@BD*NX zr+wQ=IK8ZtY?bzU>u&mYIcC#WQfViveJ{25c3SpY+g(^2r;p8v=9r0PH!dfZ*~U~4 zJ{E@6%dMiRD(Z3{X;{<@gCR&#?*8D*CBSWpN&VBw6!8fliX{$XDQ=_9Sc?}{j~-bk zgmGtMAKP99DjFaqh6ahtGpsU4EKj|y;(*AkCSV#;;#^@!YxZ_=n69Ia7};TnG-@Z8 z?U7GzLhg+=`AaJR?qzjnXt$LiuxnJDn~O>7b-s!0y!CGSb?TXyG-9rulSwyiW$^6Y zscCKfI~wNb-rHM5$tjXVmA=rvZq^C{qcN5>iZw?-h6F}4A$RjRDo-bS+r>2TM>58; zf%9A1qDI+gmNLZR;kHJu8xbk{rI;mAwtZGvUI|$eIj^9W(nu%sZvipv5Ie~ilNviQ zl)uVYe(kq1f_DPNbv#pFuvuWa`yIF{x2rs86vkfG9m{DFpWiynTjoH-m)a{t+^rUx z(kb4{M3UCe%J<)W5zQv4w`XZzGhL5*igD0>)&FFPN&UnIsU+G}1`}$8$F52c0wS zl`f<6ZRWL1M!{9Ld8lJ92?>x?HESwT=7f`XQED-}YSQI=%IT)vy7`>&s+w_WYb(j6 zX(XDoT1`7{@61@Wp7&F+^P!46c>K8{xMO2DXob1+i>L}xIW478AIQclfE~#5KuVG+ zEaYVtcQ)Wd3^L0aPc5|JfO3}(h{=f-K-Urh0`H8C%*+&1QR9Xw3g67o&onmk+Ii1y zD&0Wf&W~mbE5jS8V;i!Q)ukXYFxo2G$vo=}^4#2IIr{L)rSrJrkF{rX`gt7){a?yGYD0511^HMdvt({9|_HZCAp=T?YE zJdoT->vr)F{(KhG?lGuuHg7UR84jH8+@u#z23eK|V;c#+(}Xty>P2Xyj7F@hIeSpD z$qrv-zDokYD@_y=rPrG+#OV}@vBY58GPz`8%F!6hMGCQ3B1p`Rsui}cRfYBjnnZ-i z9g(7gX@E&2u88=Fn|$pVMVXMRDzhxigpxM)a%t$5`da#>8#m>x{{8OEd96FE$t1RI z@24+kwVsK5?RahOuVPzyUhW-51Eelvvo?(+fr^7`2$EGZpxCoPF+gKOv5`TntJ}NJ zwnwIj?MzPLZeyNzd8UT$GRrE6ipCL4VmKN_VzPXQj!+uf`#f+*5TPXreeHOr_tSe`{{Vq>>OnqkRc=<(vflCK(REjS7WdO}wpvt>yb?Rh zya?LX2qS3ZKr)RL(P%GWiBGMl=Wx13HqlQ)xJhMI(U1w;cI8(QDY@vL>N`jk6 zH5|y7NG>EEO4=*n&2Mm87-o2anQ&p*Fp?k(1$bk~^B3eS+LKJNJV@X)sTZ3j{o{SS zP5aR*Z97|bOlQnzAYkrZ11=^l81rF~W13i@2&2qZj#XI$NT_id0Pe&%DyIuGZ6dc+ zp=onF#>?GG%IlTuB=psF>wQdJN$Aqmy(HRNX?rc6wztCiJ9Q;xX`z(?xLA>V$U{RU zGX~k^ydG!<7*M$++nB)vF5g=T%nG^w9^cn5#rikVna`zHKfcf`QI4c#fIbDI8M%uD6 zI+aWuZZ&Q0BVlA;e&;v7(|fNL6DwIc$ek`HAx?)T=4Dt4o`eSuR%_a_af6o{wIeEwp_wii}m$ zR@psNleN-&XqUTwy)`Vg?7>4o;TS~?z(x-6?{y6d8A0;Ccij%q#z@XsfOAr$GRn5h zZf3ZcxVw@?*kE;ONZI6qV~I>f;|&W3SBSF`>_M{71Y~=OWszl*%ZZ|m+9(F>#_bs^ z5|bi@`#?!C9>ff!7A`FsnInyND+ryUjNq9Re(XCGWPnSCWof4@1;&!y0dR< zEfuceuJTg@Lr1zBS!_oX6%m6k&d93}ThstrY&lz;*T~c+;9?NM2xLXa zn;dd5d@vILRLF_tGN+sgBP2*S6{-f^kjHK<<1xa*LnX>IQvIC^1)PFd5h8-InV4)R zEL&~`moAgr7K&UvP{{DC+stSbpk#RoY>ob8$O(;DhLK5(1+#Z?a?#5qF*#H#1IKYQ z`FCS*+yF7|WgO*lNb9hd$a7bVwbqK-dOK|GeeM26aeT5$&}rLN($@a#-8TDfu9e#% zRh~tTF+6cWArcnZgxacP*(SmmNpM|5A}I=h62ui!%f^+KIQGd5GZ7rJ+p-fJC7Ceg zl;I@`JiVtXjIy{dfFx!yOB2g(kVO=}OpkK}lE&n?V$N~5$!*HJbGAP$gRDVJqUzu{1~a*Yalj0$tMih`4Noj~S4*l_X{#i!c)O(2 zce?rPOsYvcw3=^gbX>ig?6mE&=u@*X#w3NDmMV@6au#+FmHqgNLS}{IE(5|aR004C zma8|f3S7eW^SjL+*;z^b#M1C1WMF)_nG+{+4TV4imtq2?v3bSBvq)ii)#SQ}M~NP7 z(MH5fqFsTNA}XUKhn0gi8mL?xT)}T8wZ+TCg5~9D5JQ<~`#H0Wuu^B*OpYC7kV2*2 zL?uwQc*QLe(#LF?Egl@Ao@7+U#XudIx#OBkk3JbynPs<$pv-be>liJT3AR-#<)hvZkt-q` zROsSZ%PEdTRDHI}OQeuS0y*RfAh<*XDzuL5pgN#T=MLB<$!P85dA50xy{x7mDmeV$ z{$Q8}5-~f(akD7eu2%)v(sGJXO|LCdZ{gctd0qC^rG2hzNpo{PUR0f=t-g`AueVLT zdY77T47=wkB0M5HpE&t&Z4V&;E(->EHa`9c8+Q`9Ii@3ZaU^brSmrM@s89uwRX|jR zJmM>Ow;57FjhQ&)lC#dUMw7;?=8rDj-C_%pu$C&Y+mtwBBns^#qN}I@PD0i_<<-^B zw`HKureFU6X6hPM%+@|2isgl+z16l};?n8}yqTk#NJ6c%%`=HI$Pra@Sk{*;Rnu)W zqOASqEJW?YTcUboB5(xlB&rREdCufE?Rg6n>Bt}mxPN7u>)@_BDmNJFdte~o~EL14S zr)4YA|y9q_$-9Zzg1f+m=?2 zG8)`0qC$n$R(RxQ0SZK{tgg}TA(&T{Ir~m&CCgE@bmeHpXqwjXzV_d)jOtP4<%4|5 zZPhnrWv04YRNB7FO{9+DrxPiLOFW^L2bYAEWmPW@^(+I1XII@ABnHMy3XTVVvcVis6<{_3>vxJK4~W@MWq{aB)X*S z>Yc3g-_X~Yt)VNu9rUtRT0QNv>-v@5cB4BaDqbfA8Oui`$y;`=toyB=?Odu?YnobFzjf&C%N1s>^|rdS)4hgR&i4^Z9pTw9 zP!`q%*)Wj07LMcRDxmKS-*qKZfO1NjdcB8|(cZ#jTX@Txiv^Vpwa?lJ^Jlnu8_teG z$(0bgq6Q$wa1`8j)2(ELL1z=eEy0Q_#g^mkH+N4Wh?GjfgThLSq%!X;$VSqNq`|9O z+)ZmMyvrdsCP=n`H!kJ!yut%*iFQb#HWu?n`3WB=;;SFsO*=|)O3lBATiv}cqx+Y3 zj+$=OVAbOm*GuT_b#Co19cwbUi@IQ*=xkUxz zON~lx8&qbNX&yKrNp6V}Az$9t(d~6-vz;QtLpI`NfWR&1hFIs`sIDP-k|k9KFDr#4 ze-=Jv{iOaDcvHq60`XR#Exo*O_?t_;(XKTpB8^%-GsSv+=8jFun|E1kt?tI3s7(ah zkxVOb7)fD?hs5GA*xDI}9~sSjJt~P#3RmWg+*F>=?A>}ceJm>BYv6G>R-d=4Pu-J> zPBMj@Zj#kqZrj(gR$qoc@J$_J9Y6Mq@Cs^ImoVE&H;8mdbdz#Lfz|Hxo7Tp^H%uBD8eg33lzVDDTm@<6ZR zAK@2@_0NSL6f~U4aK0k&e~qo$`K_g%(&9Zs!kV0Idha2P_9#s{Ygr>8HRZh93adCT z{j7LHUef$s;cX+tnmmQH?-J!>1iujHKm=O!j<2nH7>3R zdG?hI@<{=>D;ulMaOn(+>yT!N6qyoDfyqY0Z6jXYcTH~OZfve4h$)UWXpUHrNF~=1 zC?TT}#zOSnS&eHV`LZ*ZtsEI+xGl5^Fy3y*G5mnAW!SOEs@o5lmdVq$nP7w!i6NU2 zsU}vCpD34AF&rzA5mKx^P|m{~ar%xGa^6zWX!g5lHRP79>GQI^kIgGSXJu`kpC!BM z`|8@gy6ez2uvVFiZUq&VEybf%8`?=G?pq9-zy>e?cI9N4>%TCffOU*<=kQY*S;PL?SJNc~@Nh;-|SaMmI8EM-qsd;wAv3 zf@F4xFinOt`epSB@8+JDZC>0~^S%Cd`@b#!00EbG zPjRhTS(x7DJ80&-cUU~#uI$hxMs2DRcP%8u?thhDGm^l!L~cwXH!_BDidQEDDZqtP zgStJfxB?DW893Ypa}hy$o*}!v-3UdshRPI-%@V|kapy|R%*7hwJhHMCC8S(1$*#I4 zEUJvrv6%{)BoTt!nC>AJ3oN_<@3#styO#vk)V1b&YrgBES4r!Ab=$Sw$eOcG`dKEm zTkq%D>Av=|C4%i%I6TtRv1z4}AG3*FUD;z-^9w2}?FwIVWG*r@w=IU^HN1u0zRdt0 zT&V*fhDHOD%O36COGXctz!c;XcZM~VIHi#JaWDo<&myv{V1)rfDcXRQP#K0mc-!SG zjnoWgW-=Eo5lob2+EA18`9!jbBxPk1G?*>&vDz>zR^-%G_O{P-xo>;!wCQcuj^;eE zz1nM5x?OA1_UP5Tlx&WcEBL2&Hqx7he=&u&(;S0gC7hAU$e>08u~i$08_JVV&v_x8 zZXvXMTumBIk{O`btHGIPf0KB0$&9PzS8hmRMJcTs2+hjfIJsDn9LDEluOwJ2A`ygb zsfIWavZtBy{Kcu-z175q+DDR4+{NYYm&=A_S&@~P0?x#c0A(s&4n_`gHztyCwd|d* zs#d+-{F?P!=qhnZK3OYX-u1k#WoOdb>F3tnUA@hzbhno;%(BX7K*{^P$AE|AZT*4%dIb?mIR!Jg2gfVs|IT~dF z1CFeU%r*vg#@yD7ZycUncI3PXwSz~1v5bdjLd?nrja@fY!VgP14c&%$mO})58kr5+PAcVRhC5tKDB9L*o6B8Y%7Ye!D zX{$-=rq5KBmYp5`=I!|zUy><&SF*fyR!KIN*0%n4ZC^%isE9H0M(d;#eEw3)7_^)REExVcx9t4zXf;oIEpxbL7 zZ&7J);hAq_hZ4HToVdBkDp1inm14EkO3g}1?`36v+TW_bp_eGS>QPQk2{&yyZM3$w z`s;h`ZLj!C;lCNdrvA^Lv@VlxFNZ9=De<#j@LjiuE%m<->N0q)T~beplK9&5ThX<+ zVEY!Ed2Qic4&Gl9*-MG;WWROI<0n&1*rjlfb$^gzYRf4-mz068LzFSiQN9C%?2wG>a1r z#71=`SM_`LM*W?%zZMM=_rw?4oA_(uf5R_@{wnaqS|$C**<$#qFOO4R@okE05X{qC z3+)@gnqGr@ZFOaBXW~6WK)!<4%al7yyQvi9(vopjbnKdOZAI#pmbPg-r*FHewK>W& zjO7_QN<6Z)oH=6-R-=7dcTKA$qV)czybY#*V)#qK`T|WdN2d61!&)`7v|eQFnns1D zX~Bn>1Fg~Wg386)e9a>`W!`Jie6=20frbhqSC?_!<&eQh=Y_#7k@FFS8+fdUu8`e4 z*kc-*gm42B#;ztMULpZzV5@|UM)mv6l_NIo?xK}~F=DRe;8D4c%#37tK^aq(Bm!4) z+vR``D``zhB(~BvZuV=HZ}?wN!0@c&D@xLB>h?`LEA`cS?{>B;U8HFvWD_Y}(7BNA zR`U@Z;l|~_a7!u3#zKO>Eix&#D2SI=z-ML~B~S|j2P{IV zWv*n>c1h^0m9MtfeV^p@6lHl@`m1YpR*aDl1ZIe(b0rV>Q+Z8cmxIk z6c$~~>TtYrNMTP1R#SrP(kwxc9nu1h5yPikgl2>2^GJ?Y@6fkuw zkZPE^na0iv1dSAw#^lQ{k>#(*yfX$+Fv<&KJk)xX!bcHF8Kl^V^OVBKiX+_+0fF-t zGFO%T=Ki4P=EkzuZSMudcJe|DZlXdIk~YV+S=5j~84St@lP+8wlC{Yykc^=hB^gU) zcKNn$+xg$Uuh{I2B`7&4w-}_`dZo3S`L(@^+CHIgsMIY1Z?gaMKhf>?^N zkCB!~^GK7KQbMX38C(poAp=Gj@7}D+F(F*wl1Culll#K$97+$(6iisGF}VZHUAuy! zovO!h`G#r9CnoJ=t$vF{m9+BHtH0r!c1rJ7t!JgKmb!L#-ra0T2J*%^9AU(<%M-a~ z=l6lbjmsHTP@x@i$9kR)YSsKrC;&#%`REciL9y_;NbfI|RD3<1g9nKv<>Rq|a_#IcYZ zI4%Q7>O_!_xI!}wwgy4lq*O|?nezumu~%W4c`jilwLDERWEDI0>s#QT+x?(kHwR%TX=z5|e_ zh@RT#$fWs-4nXTQ#xTZ1Nf=1UEfH2g%3JOz zU9O=?3^1N!ugn8{#<-jHyK8x^qqT)!7`KrWwX{-*%QLb+??OZwPUVoGcEc9kxN%~= z$}+O}t+ID|rnOqD>b1Aer%g4_Q7f%1mEEIM2^Rn3FJY%a`LE-C(?cGTbnI210 z;mNpXmPL)50K963M`=!O0h0s*wZnK9_Otjc;J*pzI&|JBxxc-+^M%A3Plvois!eTj z+wU%I(IAc|QBim}R*iC5D+zY)^?3R%PiAqg9^~5@BnI1L< zD|n#1mPjQsZdoD&ZqnKMkHCKld>LnHab(&Jp$gV&=H}kmh^DiFRu8ifxsAkY8_LQ{ zGe{gA#lZYGi>PCBJlhLH3scz6lqD`^^ox>;+R|5&j@os1N9(*WusCe15my~fbty`8 z*DW@b?yYxct*Z#+@YZ9LY~sftpg>T~daz_9VYsq==H0lvF*M1(68t~5nWH`$(qoK9VxAc6;sKSwaNtI{ z48>gbW*CnkWFMZyWO?M{{Av+brxxUt<0xG>qlK+2-d}5LG|}tP#pEz*oN40Jp()Ps zsH0Ig3UI$PdnIUE+Vd$pHjmB!01N7$3_Kg+U4Bmkd~on=Iwgd@DcAlOSzma6P}DV@ z1I1eXjMj0-t!mQ?yN?n0e@S`nq|p`u70@?xi>R-qfXy#`q5N0)JT=WX#y=N+BKS7@ zTkyS&`spbZ=Zk!2J)Wtl`3ZThHO8x=>Gsym8rwvc8h)3e+Q(#)ODvPQDYNch_*EVO zk)kp9V@YYFn3WA@Z@sXXM2(q12;qQ1)-FyJ^O$uXgkB1Ju=jo%(k8Za3397r7UU#h zT2dDe65s-bve;bkoNzuC%u-TyD9I|E&M|UO=8}TDOWpTUveQMYJqc%-U0-t8m`Ty( zQ)-vCbkf!w+??L~ZM(FaS66MP;=ULCs6Glu6^*xuJ}UTkS=XS7dsDBrk9(!P{k7!H za**4Evt+lC;fCB_TE#z?B=94&NaaH8T>jA?vsKlWt8XukycsQ)r83=W@kwtk%j=mu zgh}sh&44$vg@V~$MpqJ>Hx4^J`VfBmU9NjE6f-LY%0@CmvZ{K||e1+DT}& z(JNT_U&G%T{{UvY4;POfc)Q|Ghp+rYzwp+ZpxpR{bng&F;rneXN!4{*>s0Xem341- zZJ=IEFJpaS?OkWSdwXk(hYGNP#(vbFwMW7kd@JE?A4d3>rd;W|hmQ0K{Bk@kHl=^! zOD_oM(B1f%n@x_w+3zf_^^5&8P0?Z0)*%&~+MHyxC4|ZMOrHZj7u?2LUkGSo6(b1^ zlp6usJd=okAxi;<=L`wjM^0V-0emido7iXYK7}xup}3B3uv?_2SlHn(p>U<6PneR9 zcNSF~w)5fa(lot{>QQm3`CO@{rzdFI@{*nJs`rymt@XT9%yL;)g=qb9Q=sD1DmW^3 zR$Qq;MJ`s8nmtQbiddkBP$u$wiPBk{4*N4+y{Z1qKMAko zygHA9^l7bRzO}x4RkF32)=PNd7NRn+?+DU)k02!O3`Ds?Nxi53&wmJf$n?m(3E}%Y zdrv-CqB>oYL{epV+Gdd<#F9=~#?Z^KsW?zJ);N5ZFruLt{asXoaD$u^lf2Zqmo2$p zHp(eSrLAPPuZYU(!lQG=dpWvwCZjmCl{#^UBXW$K(}kOIbCYpW=H_j^Mg5|F22Tsl zpB6qIGshfqm;V5Svq&t_%^4_Jjn>jPD+w0>#8WS{jn#7BuP&*pwz@5u z=oa4{z7O5pwXLVbj|JV_l_lV{@eZ4G+i)FZF+px?M&E$(&C$!V! zw)5ih77)+mqWMw+irJ50avZxeF~@el2)qWi@P*3b_ZwzX9D8 z7Tz`R%P?OtN^4d!Ga`e5wXPL`AxR_vK0;0iu8}?xd_E5fL*b1j)+oy)-`SQ&_l&+= zatVB(a}s=!g~LPvKu%6FW%woV-cXQ#!aJgyq_@0C9c(RkLXMtXuFd6zk@358ND16W z1Fdz#AX(UuOQcK4I0uKmw;FTTCCdfL}GUOObIC$2i1RmepUHj9E)isgWPrv$Lh4sS>CFTs9L3*wIrwj^~> zb*lo*#Ew_@;iZ4Nphum*D9PfmA^n{G8e7@jLi#O~(`v=0U~MeJA&nR0w|K3+tqZuiph zI_p1(ei&Gtr}0jM1G1UXMz3S#t+J^*%SkW<1S;jwg;vMSwCy!t;%9)710NZ9WkaBm zKjL?$xp2S6sxC{gEs>Bq7TkHRHecDx!J37G+Q($FG^XqcW{w7tl1Uhtc#Wcl)gZcAKoaWvxwL4kPJdsW*C4E|Uw=1>p zX1ca}Bm6}0e2BB36lkUb(K=84r({zyHrT=uCKh+!Y}J zRy7YQ&*x3bwJI^PT2K!blGB z;gOJ$gVa89xHz3eX)0T{+5;<=a`CBVMIbSZoNjC>StUE43fqp-LqUGBM;r``1Sr!y zleEKom{nEeB|%6$#e_3$k+uR(SQRQVl%1TP+0{jA_FE-wwM}->C!zJXPiXl&ueEsT ze%F0<(_*y8?Fr?xMQ-H-w1U~>kcTd?24-f|G+ohId5_$2rluAb?){z*o zDu4pAyRZ7j$PwVF+UgB9?(QpM>JXusaVnObngmh`%XuQKkCeb$VBB)Mfdh`1x@+FQ zDo*!zwbiXSJ%xmON^Kk1mPAV|2mtbka~j_x%jc3=8c2u?u?3F^fm;qn7Czyo?$uH#!Hpyv zRiwGLnUVJ^nKLZ01h;Lq`fCKqJ5QFbLPQmtt z` zM33yqVP`@61b`5ww(m&z&Uu+f-S%mvHECO2B%E7%X>G5jsdecoH1GCo(|T*R zwr_ndmABJD)&fIiEyBD=v&$U9Mr4XNMFYzNgXP4)2g?R#;fWanv@K@7a8$Hcah_J@ zCo#G^sA!PHa$Yt0f{=2`iumM;tz;mc1&%1%(M#My*0(Opc>7o+W=KIhV`M56tCEnY z<7*LGHqNOZl&FWxawBvGL=MH2NQ%3GF@@TOLaZO01qW|MHqwi7XXS=tE}fsIiM@VSaB%D*L$+A_rfEK5xuh+U*(?G%R#XX=-L+gGJd)YP zbsX@zNJ9sXL*)g9{KSwH^1(PO5i21BaVK_iP9=`t$(XpAK@g~kWk%S*<+miK_h22R z9a9bnB}mwElUqi~E4=c=?&!}n5)!#Dx;5T6C|(I{f*EpC0Bx-zn~Ud)lhs=5W|g*X z?@jLXe|)cvJG~llTDv>N=#{+|+gnF-FlC9FgE5l{P$VBZ=9L_1wZBxg{1>R3kOacwWlp z%TV}>r(7Fpj+gN(U0VqwL{Qc`^`(}&k=#Ve1XmH zxfa6WLi>RrF;%ZUyMKL{?I^~Bo*91k_mHbmNk&nOxm=@Za>_BBTwIcRrnXHP$*H#$QqDZ8 zNoys0J#Mb9pIs7qZLiF}BKQIE7vd&?t7v{S{iD7hCB~_2vD(G({{T8Z;4~CdGK$;{{RF0Gw}U}hv2;jMexR%Wd*gi%Lt}7 zcTm}EjyKfr%(7l;FB_z^gxm-wx*Z$?-43 zzA^E~hwX3vC`+s88Yh8#1E*>luCuLp+C3jYv(>H6t#78>*m!0QC|rx}Sv=FZg5oG;1Cm(!5pU;qaSHdF|FMcJEE`X1dotEBK8Q-v}Pke+GOu z@Scz~zZ2ao4)^-Tx&502(A-)$uc3wqF~>p>a-~j;qbi=`glWbJNB5Fc_t~V~^-kK{ zG~$LKV)aTSRs3xtGI1#V~Ebzb4zV)XXHk^eCemS zFd`@gNV#WJVamSZ0rBq={?Y#c0z4byDZCrvABtWMkH#=TZ!}&Au)mjG@qN^?s+&72 zFAr#uY8r*^t9m4i+39N=Ue6n>!qs8@;QT%Puzo3cd%_+a`0u4(d_(w+@n^zUz9{hD z!aoA|O6OL()$Kkh{?k`lO~vnxd~GF$oYCA{{5be&V|!wB?+0m2x;@v8S3!zZoov-6 z_utqP_FDa^JP+b+A5r+rq1pIL!Jh;CJE>})2(0cjpAN_3FBtq-@u!8_-ftUfdft}z zI>xE}jbnW^o}qoO-wUIv%_W?6$ql1z>!*=WrG%a<7mbWuQsko>LUkKaYB6%V?4P@3 zeO>fi^2RAujT$uDa`@$YsHFbWi_tZ9n`>%{bhj#q^pTtBmo7#ho7_`!H9W&w`6s!BH3%=Rt)R5kwEqAy*7+pA(;jOgZLR>A zJYv5e)AnBRhlze4{3pBk`{92XX^`q(F1zr*hxW;a*g>dH1aG(Q9~yWT`{5_-+51d8&>f~uXO6Ho=L3g<=6^* zv4$d5YgMYD2&WZhwBVjH^dsRimkM-2I~GG*X)dU`sawX zUj}LZAo!W$?+wFwaCW_`{|6l2PJ4H~tbxV)$v{ z-wSwtFASh-jZ{Lm_m|qyzqq$lw9=Xjf_~9CmgVBNgXj5!_A>a}rGCLu>REeo2yz`+v}S3tXeu78SOMb2tjXVmoc9{ZA-*AZ*pW2 zq^3J<2NYDKYI6DM(tZv)6p$%mWdi)ySa6? zC}oYL0e}p_Z3t7$&M?K$nB?FB8Mww&eqMYV_+-8=*1jj`);b1-q3BxY$G;VL)8coD zwAl4Eve3R9_%Fr>RPZOk4+%}GSzB6IUFuq{lNX6RU1j0KeHzBet}k^NWz{ci;EVKD z>%kf%>nGZ^FB40siK4kn&-h7oc<&&Z6Xr(Ii+h`UC?X|FJ*0NV-GOD6HYDe=L}e|X zHaM0+7#abOQn%= zf|E_(OSZPY+FjY|mb$wiGJH(&2abLu_*=$)4fqS;9Y$Sy$66)UjVHy8Qb~Lp;13So zYIfqlYBK5;;9 zKMXt{qF-1|pjvA`4LlFxS#^D5#S?fU;^=BpCyKr$eY*8^d+6GG?LSGdmU7VC1+UU; zol@4;>dw;k`pzrc=leF51A7SRvuB} z`%i+F{v(Uxr;YA@AKQ3?;an3H@z$rQ=~{NF;F~>S(p!7GJ!e;sP=Z@aTm3#slHW?z zWs)1RUVCdsxC+bFLmOHcSz&0>l2y`fq+sV!$y=7vZ8V$Fs9Skj>gZCWoTE11xYd(s zMaA;!^jEd6uXC@L;pfBK%kLBFvv?cAw|c*fbeQx{6<^%=dd7Rd73e}yaN1Xi9pQ7T z>BeU-?X|}M%9CqF_E=4V}C( zELPU>A|xn?v5l-&yjS4w?IrN1{YlRal5kQ?KnKJEa&(_vn*KTUlwX?bCg34iidnX{NbTjPQ9(XrWy|PP-k*Iiz?WQoau|hB8(X?o-uDnmE>5<$;ZE$p> z=Cbb+r!N=5OU3^HN7w#1{B-doC48&fNc>@A;pjCP9J!f=zlXFtBd1$V#Uzf_((o;` z7=dIsF5e-1SN);WP_(eV*LCTwBDjSkl2+-yA88-7Ux+>~cq04a=fr;* z_;SwM;fMSzFN&TQ(Jt(KAMn3Q*L59Y-oxS7!yOAS%O;_y*~4S0c!%OHp>3*2*Y7ks zKG<~V;`4ooU~ALEFKt$p2H@vvp7h?AP*Jm#TT0RB+tnD#tR+*H3CZ1aIA3Jqo!!;> zY~7Xgzp3>n$6G%PUVJ0*Mv>ypW-SlFcG^;0c#`_^R#?V^q&2nfsc)%X&oFuMp~!O}0G|o5T7f7kAdsTwj>tyh|x10yx@A_5T3)CYQr2Uk3as*Sual zCOjaXCe$pvDdC+y<5#!UZf*P(;3(&_wQHGeL)!lUYHOP1)~TxNe`bS7`z zt0ckGuH#m^leDEeaBk4iMRT=&Z+Y1*61;ldTRe4olxX`nSvlG>la1c3THO|#>(<&I zrHJmk!-Qs3jiZZqGP1e=1e;W`P|6xGK4lUNHVCK9A#jSHX&EvrNRA9jxGKU`z!EOd zL`?qxaamVr$s#zB-MpzIc2tcdAnn{301_s0#GqM9;Zb9g3$&JIAUY{uq^>Q{|1W)MTxF?Q1Pv-!9g6U3Tx_=-u>c_uX|#TGqR6 z&D+0TgmI*sm(2vG+$nM$6vy%q`1wd=EYY2zL$r$R(F@8dm4!FO6sqjo6qUgd;#EVH zNjG4Gz+8>UHw;tVSz<{fB>knyiTE-rBC9jJTbE;O%9SS$`+*q%)mzDpwXD}ll1Oc> z-u3O`MYxtnw+|4;CU5a;=yzG^p zmsYdAzFxM`T(HifMkMmiVha+uIV0sEm0ZTbLb;F;=9k6+$v$nX{6O#xwz(gN?|gCK z+Yb;omk;($?}~IgU3g387^99oE^SFJjel{!%9m6rHO8L{NY-kXMI?`nPlEpd2j%bRU1cFNooibkzXj+8VuO=e6eOq6>wx3ypDa_7X{UC!vR1QiRGYQBtWy+KV zgpLMAT2r_dZM&2OKZjrNQjdW5zBTZr-;Vq@X*}BRhar|-TEZoDpI-3vjK6BPMg_^9 z%~oruj>Se%RxJm_{{Rjz^;^cg)gtf*iB|s3 z-@`Y$h2zbCsei&3;yoW!(k(SBsb#vj(r&c1xqmVp&CC2s@W9q=ZtZ2WUoEX;ONVB8 zA-XKyX||d+A*5DiEYUIYCCe)e;8&ZAPBYr^c2m0hGjY3n>Xw(@{m#rkD!tbFCb!ka zryX?HUp3Ol;y?Tm_x99>;fIQ~57?99j;yeFGsd1K)V1H)-^5y#$hXt9UlQCXms$94 zHO0d(+3kEwa}?UIg;UNJ{{Y(m0BzH9uX6$)=_WhK{MjRxQe;P%F%dX+^2k{tF}NjN z2*RDCC0&9O$^I*U;GloA<FX`6*MhuS*U?>B%Wplq zyw)~`^*+_7%C8x-ybedn#eYMe@Jv73Nq=kq0E6;qo;B1o@%u}BBZAjN_>-i^ELO94 z$3#Sq*TY{HG|M;3-COvEKlE=By_&k|o*<5Pnm8cTAP1FByi%v5loGRcZlxjLNqYqzRU2QOPqH#?sNpljSeXguy-3r6ih?P`ba9 zS~S|%R{AUJb+1lortI~7`&*{EX}_m?7mt@Q-1g=a9$c#%&Z0ou24r_u$d)x$RRn{Q z6?tqr!zh@zmRSLGFB1R}kgDc35h4Ni1cE?SS@(dgo~~;qmPq1fJ6&c%0Bk$3SBT2( zlet?jxCKPOKRW;^g(5{+B#boMNm)txV^vV2adr(WpD*Ud7588QFb_;ycIdW~e`@V- zWUXtfCcE@9YB$pN(%LO7)tkF=@_OyNCW>`=bL5!fneCR{SrE;0A=*>TP42*gSZ#H4 zfH_ecX5(5SO0xuc9b_@vM)EX>e9$;(V?~TI0MUsVjA$E`-G(%v^B~^oiTAK}l?KUN zyDrsD_)v!~n?lCniRFmF(T?Itk)!hnxCA~{{WJ`-ir3wS=|{;TKyACt(Qyx0KnT)*onk43#m%)+)08ojK>&butv&VmT1Pp z&e&rT;YSUbBUqws@+@d%WyEPOm?R2@XO`uHg(##UFcl1_tmC5^$hn!-B5gJZu71&R zi@7Db`7CV?Nx6~~5=%AY!9;0ntiLlBc0h*~Wtk$9*w1qE1XaSpZy<;6@wt^*#?nA# zn5qT*vDt!pIjznzw9H@ag9AjZE@*RQK04pl7En5$BYi%?Tc@G@y(wk`> zBQi$pf$kmKsP80wuRmgZV zxEWq46Xp4SX&21eqDMdmNJZyya9Dyt11dM1?r53tRjr|dJcsgCn{>Aml_(hU>n_|z z0}c#>7n3m^vy8ZsAhJ#(iU?L1!Xu{kW-P}H>a1ExFjaPwT}h>*OI;tTw%;wT`!49> zY2A6-r%S6Pbh`Q8`&^Y?RYwi9g^n`iSzN%waFIrFzlJLt#~Oxh!Bv1YGNQKWGC?vX zNB}Tk6l69?ESL;P3ZUQsTNtPwDMbEYg^H;zP&sUpq?KiItjbS3sRt|au1g+c{EmWW&?Miug}lgfA)3o z-^5J_+Z_onWQA@SOflQVc@(iKm|D^9j^PV@h0T7PUE7lmW)|w9$Ym0F zqs~}DG%WbwA^B7U`Q-UYJ9dvG@wB=ojb$dOu3qWdR-R_IwR^o<_R~+X5^5JQ*=g3V zb#o*(%X5EyBrsW9`R_gC@<(rN8%rk2^RakUJz~;-XU!z8pKH4uHkM;U12Yq-Rg zqFDq?=_3_yl=Sb}0v#jbM~A#OqWE7y)UH-0@fVElH6)TH&^#-7_M0mSqKy@P)2{0} zjj~$UTh2s66u7+d(lH)?pwIXzMv3D9%|J50Z-*WaUyVNoJ{Ra-HTbWj=(@jzC-EPP zb<52Uz&-@{b#-$NyRK>;AkwX_4ey9`jeA_P(fmK*ohMAQn^e>_i^$+sj@<~C^JC(t zz)#zMMEG;1>wXRKv&-?D;(v|&KdXFQ(|#9tW5PNC_<7-L{UIaN?Q|_;$JaWBrLSrp z3Dede4QPrkG`meU_Djut+dR?vGAtHVhpA0ft2{m)6=dmq^%72^<#Lqa8|b31s-?-@DOht>=3j7sM~w#v2cX9zVU&;L{dw4Cpuaw<~D35k(D+ zwwmVXLX6W|-9!}672IFDb(TGk`@{-9K=?W0Unk-(hPBv!&voH%8T>M~@Qv-=(imfp zQnoW%+F8gTfJhfow`=Q0X*T(Dn{gD8pl3g#cb@~iQSgiQd)2%HWvI>I-vZcpU&Ic4 zDWdE8pN>3Ns_GiV*IL%Qto%m!k*<%l_=WX*{{S}oS<<{Yrs+B@sgbR%<(?L0f6U+6 zYfiXLQ^kJ{^*C2Inz_F4LlD!?7L}-4$EbL2Sob%W78}*Mfyn_;t)+}OR^#R~Of4AW z6T?=b-6^=Z+RCjI)KsAxt52FrR$Uv_q|ZYJbTbS*2O-ES^CA2yp zn*-fC$*pS=wT71rcYo23!JmfOAAx)=;g1C9dTe?ZhkP%i=~@?twA)y%?KHg`MA2;{ zv$E5z&Yub-OK)cyt1AY1Cfwznn6dbG_7u^yh`t|6mRdwwUac;s_dY9!WCQJ*$u`RO zQcMV%TZoXGSfiO7tO4L$DBOQsd=+Z)+k@pPVGM3|l~fyXcPnaGU(t+i=-m zMMk`Fl(6_n!`acGugaDEtluv*rtPauK3hE_-pKKB)f_5K*{f*Ny^>BXJzGn4ve%;2 z>U19u>E=6ebvy;i$|I33oXoMxq$5QmV{FR1WsR9J9LlWAyE);$2L8)m4E_gNK@N?1 z;-4AoR(JZ&r(xnh9qTdc`lXfkh_7z1HGM|L3u}8#GRs%gro5l~SH!<(m&AIUC1SqS z4YW}}p6RB*lYF~jm>8o&u@mHyH$G}RN?BuKet+HW%8-K|Rx7Nsi1~YAG3<7Kkuee- ztGtjEH@RjXI}BjH271@EhUTXiN*0YdTbd~=J8a&q=-+m>ze{+NuTeRrIVB}#uC3AT z*3R2I8BO8MI%%zS7qYiEdUSHNl=6?>Sf%1DQ;S{y041@wh9rjOSe0gy)HE$GlO%}E zgF~`-+DmBRF^S$}Hs}OxB!OMF9f9QYw}xgQ0!L8Gn(7nEbzEdKZ;n{y%Ly5oLdBM1 zU3#+lXK3H^0s#flt-7OIqNFbn0b`7q!#B;j0f&vhFb56@J%AWJUdj)ZJJ}|dtv1?P zZ2DgBccr#D+~;e%w4VJsC)-^vthTf6au<3syt~yGA2gCS$x4+2X;ZYi#;EE%un*2Y zUQ3d3Zu~uGI+v2(IE}(GmqgABe8o_|@UX}wNGiu`H%ji-_fC%b-$J{;)1uaHt*6v& zG?RB4Y8P5%q|n24eI1;#t=-M7q_-Bf*H;n8G!aR2ZjU5yA_Fs|E@ew~W3+_E-MC`g zokRSUa62r$tt*yQ*bxC*g)py@rK~-t!+R;0!+RJM{RIh96>U>-AW8o%= z;%zSC*lE_0%*ixS$gwnM=VOGloP5yDg!2cKPU3P#TO;|W{k*?qOOJ=zjpxK24@-jo z08f@zxYsnO)qk`RJm}puCst95h+0LNXN;GS#2m(5Mt`r(UqVS*OM?VYbgIzp7<@(Y z5)MOU*Jxa*;ISEEt6wF2X82ue;%x(0({A+ZS(f_J>fY)Lh)v`yCIl-o6wIo~#T)_| zKq1^QQans{5h&F5a7{`nRD(&u*>0P&y6NVYnjXFn6@FMsPWO*1zNx!vo!!>jEq7X7 zAH$xP;@=Qj&u48pwefC(x}-+xeR?~4hte!}G*a5#tU}`Y<{4#Z&C8hIbP@uOB&#Yf z0r5xSWsZ%h{{U=wZ^8Pmt>8ZrCZl(I;oTnUYfW=O*K8a2r%0T6QblDED?CCOC-WI0 zHvVjLGOxY<)*l9S{{Vo07`%CBq8&!xOVT_+Z*1DzX|_6Mou}$Lm;6naOSsbP1;kO= zi)MtuHOtIPOBAtO#Lmh+FZO@&=8dbv0P&`p{vpy0`djOBX-t=J>AG?)yl-{n!qdp3 zEQ&9pi*qrSN#TuEn!Xa0)eKCqn1v|DRXM54TScatoF?1R*(9||r|5kpI905nQVuS3 zm89Ocj*C>6HMO^wiL~f#HS2v&CNMUa;(rfa z`S$VN*$9h1rDB${T*(sOn9ahouj&Wv>HA1)9|feB#hw6?)?GfwFXGP*=>8_R)?>D? zk8E;WUFh?9I*i(E=`orsn?|{o-ZgN4b_hQt{@ecmvFCy`J3U9^FM|9Nf2jBsudFVA z;UGz2)9vjc)%5{xZ>74^uWj{c^hI_pd4GCivWf!Iy~8BlV*YRVdOP0>Lv61?2ZM35IJv%FS4y;MK}|QTqZ)9U`!wdGDK46Blbcl`7|X0wo%UX-r`c|s)ilrVC-y@9 zymapuL2u#xcf_&V>GsqA0K|c2iq$Nwd_Sq?>|0HFb8#9Ow38&ZmIY$Cm_RMWfT#fe zqiH`BY&Bauty@R7)wP%ecBaPO7_7gwby;sAWU*Z;$)`hi71qtdTc)$MwnEd+b}Iq? zZNCZpb>p7`>KDEw(S9a)gTxm0`o5VxoEomGf;~PWB#Es50JE*&jypSHbLGZ@(i1eX zM5>4(GFS8g`zC+ENIYAi+iA8x5TNkRy=^_rI$_jwX+$^HC1D2TEt2p_=7@tlPi<`) ze9%f!(5!^U6FtOWF)s~Q5%r2tYnE}0;;!Ka;SXyVNhqe%Qc1gAK2@%G+?s|eKHilz z8jdNr{0X$vZKU*W&s+7jy+5m63d;WGdmVeliEBOjO(o5apQc>g+<1S(NpeJS+q*MG zABc5(QiR;%A3j

    Dp!FPO`==Ev1Eg$l2wc;~TCnlML(SDuuU>LeIRrvX&{2wZP_BY)luksTV0O zX+gKmcH*_`>DyF%PBQ~ugxjeJM$IJBvPmVXR(-YkJDqfrn2(ih1InRf+|MFK7y*MZ zP}yX_EcqaWILP3srlS3VTuX9@tV)O@4KhrO&Ig$@qJ;rQ=2b;dLC#5B%`D);hXd~@ zV3>DsSzK=57LN*KWo@i>g=N7DR)xm+K~1sEAuJ<+m6O#b-mUGe+S2;p@Z5q+rV7ObNbA6s;FXK!at77` zfssHUVX=?8suY@zE7U}DDovQgN*z43Mh%g}@OLx(@(=?RWX?BLi2ljgnEwR&{fb$b3A1YoDr*6*d0-%BUgqx-GY>pJF{ zq1#J)s$C*m4=xzvF`4I{;y@M~D;rC2_qvVj@;EWt*`&7)a8(vHX0CQ!D^u6*f!8LI z%fqE2`yYkj^I*HxBr&AIZxvmvo1%^;Az{(2Wmp+hwxMw&vs#K<4T{pw9OA|!ecZMw!<+6jz+_zesrhQXUk)>&_SJJY zm2gvV+++a^YB)i{?I7TW0GH;vZRxF*to4h#dhf1}Mz7OCQc<;*%UM3U$7I({ucnr= zLv3Y=)+iu|Ew#FoD;z#eu~5x#dF;XFiBLr0#GY9j zi16lx_$kdCp!^L zM5~B{viW#c00sq>+a@^VcG#gl`z}Jd5^8wn+KUo?=~)A)cGzR`!3^!t{_t%^oHgB!dciHY(ctlD>GRRHC zfiV*mRVc(b5$U8DrDRjw~s z@m;-~a||mH8Ic`b!bi2Y1|%$bV#Ds22_W6KCu*M;@i)X#Bp^l%?+Eh($0RYG#lgca zO9JrCVFRviq-lXqB{m9kjXh z{k_a{@15DBi7=`A)IMOwK>0G87!2*-wIixJ!jogxKLox5g5LeISb4UsMbIZ*7Oc7P6RptbnV6b!P>BYl_IWlw}O#4Eb*-3pICZw|gtuY?hY2^w}e6U@NC|xwO8H z`ssb{)$a6GyRr0oncD_P#A+BuSzI4FD98%I<5dU&k6 zX8Cq)P&sk;qZnh(R5v;E&lmhj@PB}`O@GB+Gw~*c;eQNxa?0mc*L+2->h`)mgQ4k` zku=v=nx3V3D#dP!g`4MPl2-y4e917U`DXpOKj652G5EhOxA2elAG*{$8Q>u?(zVap zO6D1?{8{3=T$p9F_)nx=S_yPrKJH>+kHnYO@@u#7pEF9cv`GZ*!Hmpk;b_XWX{#mf zt2@e1Xva&rNhIxVZ68aWcx(nE6D7$8qSmvOl8VvYw`BBhOQf~Cx%)x;aeu*2eiVMm z&3WJt4K;_wAKD5_bc)~M?w6=5>E01}QKYxjz9MSY!bH*(E3Ap2TeItz`@m=|Va%)i z@9Mu6J~;l?pA>F9SL4lEe~CUgw`tPUvwvpz3*nxbaO~@+SZVg|`frD9t-_+crH9&e z&0xmT-ZRZHVd4J(1wUo)6KnSW0PvT5O4W654r#j0+?tKt8l3lY{6g`p^XBH}_gKHW zl56c9Z{39V7n8|xu3jvv9y?`ISpNVW{{Y~k-vs{vW(ai;gue;=E39h%FVSH!*+Jp4 zq}up%Pu8%`7hTjumlv{LG=YTiy|vD%JQ!>5c+28vjWl@t zQ4&LMKg3TGq9&E$rjZ1Z>Do4n6t6yqX(4q)o)~1*uAPaN=$7)w<8SRL{{RIp_?!Dg zUtRnV_(2Y(Z{Tkg>Px4-t}I}<@i&R}9X|2rgZ>dDfg--O)14wo?dFA7R$Ez?EAwL< zZ87+cb^W0K0B=tn+R5G!@>4<6WYF|Ez;=z5%AOI49#)paO#`IkmH zq?zO`CC;FNRkt4T;m?GB3_cC`j?8I3CVz_P^2_3F7sr-*Nbv8(FNHoOvW;TUqVN{I z62FG^zYg7Qkn7$a)bzx$o*5+B9MW95KIC%DqbY>{0JL%RmL@R%9A7f0Q%+dI)^1Re zT+Ou=yj0$YHa8toZ<3r{S^c@Gdy#fpH+wdomX4j>mY-h!%b)O11Ai@+z40$iHu_!S z85=^jxK_K=t|padnS4vBz#Iq~QT~yn=@Lm5%$fev)Nb6$EB30x!@dakC*fN?UVS4? z(L6Jv+gQOOTEnL4T7I2r9M-VkUMz0b@HBQ2O(pfh+kn|ywtU;HOS_))>S8IJKIE+t>kdW4=J@bCn?QcrL2~bO)F^|C1f8e110J9&$_?pj5@ny%v9cDi=+ATlf_MI-bZ8p$kQ2OP=+G(*w9Z-3qX_Pd- z>X-tf<3Ah!0KrlIIQXhds}F>J1n~EOtf!86to%pfNso+tRPn1UK4NLo3ttadPFY=J z&As6WvJ;g7*X=)qU+_g;2To{iek^=Zk6E<0jZC^f!<`V=Sz8ELJg`sVj}WupN@gIl zNpGP*VRg!UjbEeR2|r@5*|Xr@xdqRKJ{4#;8k7n?&98WZ#$OccR#tK%wAZ6p)nuC4 zFN<9N^Q4@R2zXcpWs!HwcX1#6L{M`6C{{RHT z{gi$fn;m{{1j+GxTGQ@fx{q4;v#-hG3lPh&5A5Fw+P0bDI0v4MFPC*=buyKBS*8q? z_cn(Hg`z<&g`-(Pp=hkKrM8#ht2=!YN{(3>l0zMaoo#Jq-arW@s|cfIAUv@!IIit& zEzPWU@JA?)TX%(Fm^?P>WWiZcu0(Q+iKW^1-Q269#HV-_mnNTY9m6zNEY}vKyV}VF zUuKjfacq)Ak8$$`0rL<8g^gI&6=68Ido>jWCCr+>{H?WjuAMY#bno9rG+LA8QFcx? zR&6Aeo3qtxy|vX9T3aJNp0nvzGJT#=abbF5OZ%j}k{MuYq%KxyW;U}=AKD8>Brmfd zmP+chxUMek-WW9~jJG!qRwvse_V%pCKPnseLkOD@hmzUQ&m?OgEwpd0TxnNRN>SjJ z+{*%acN_C2;KAd#w~o|_GYD^)K>)X!(lUXQw6eaIVTLga1=7J51^W4b^ zWQurPm&cl{k(Z8L=jJ#%QI|87)3uhe)%&Ytx^%kP_eSnbB%<}YY3S9JpPJvb&I4bv zT_;h!xU`ba;qIY%A!!m;axKwq+8E?9AM~LjqePR2RxZ;j>;=c3=-PeOrE+&jA`)G= zWfxeA6AWSg!Q~CUd~%2LQ5QaZ%+qe%IPN|r-r7g4!EI^eE$#KN)X^=S;Q+xWmfvGm zX-l-JEM8>Ez8~G%#*UlWE1%LYBuFIF1_i~v)R%8}aFMOdf?I}y+Gju!*@w<0SY0N! z%y|nL0=S@{s!B4t<=QdtbnSgKX}^{Frf&J=2+7*=N%J+Xw${$;qP4qkxzy=8exGkE zZ-r;Ip5EToqLo6&o$-hrq#>1qC^1eG0vOTG3!Qs;%1!%w3d^q&t{sIMCkVs zz>T=U0gVdDmp029?PuZ9!5eMc%+?k&TwKFx3>L1iE#1}Q`GF#tyyuxd%;IAsv|eOh zdMr*nnEvw$sifW9-AZHC;37F;a}p|Ud7&=C22hcND>S%cG83^R`I%J}tD}QYb-9Wd zVt88F7F%+x*7i24t0eHEp$N z9F-=ZNsGE)WvSr_Q+$}VpEw9 zQ3Q7iixhVe+}-`18RLnh<_Q_GB1?e6+@CZo8CEQc9IR(7m*@ zmsWRMc%N*u$-5Fimnm(GU7UhPf3lKMeIHlR>7sXi-um=M00J! zvLz`j+1+s?EPi9gj;1S*DFQ1nPxS$i6l|4hUuT(bB(#DNZ4@eGj}km`l1XD6lC-HQ zRbjn^Wcke?gvM0>4vrY?O10WOvspZ57m_(1;9ST=Q=`nF3H-q#+s0Hma7UYkD)prm z?pxWmlWJ3XZOET1(%U!lv7JfZX)C*O!+560|Z0l-$Jg$Vw394X}yI5QOHU+@_;%15D6KD$K|% z))#w3Xk;cg*z!jt?Yc6>nf8EG2RJG;aEx7|w03&k?xOcycY1x31uBx&>X*BvqrJ9U z+S9>3geP^-ib#oYH($Xo4A6} zH_E66`pUe#@@&wo*8vO1ZdErUMCmX~cXo7^XA-GsQY8hVY_T95w*H?by{tdIDfX+4 zsPIc0MzEMyAud`y%L=+MH&U#dm|!~m%%sEARVw={a@i**B=t|0$}QURdaLWcn^>8* z7%4l;TP|NKEqd8qb?EvsYgUrgqFI{We>IZU+TmQOnjizoJBbeyMH+>X#@Q|yfrSMM zB-2kZlHMDeTY08-x$-BsNft;_Q~TB0;#g*PU{YdTV^u2gx{OtuXm4bdA-wY*Fw(@f zOkoKDkqm1;nY2kFsA5L!mW;+2Zc+UTO!5?p<)mrcqO9Id z{{WR$#DTUI9#F2yMxt6b8h5i-lABs+ly7}+*7mlRIO8ZjXYo$UTYI*;-s;~j_bf*o z{!f)7w6`r3B1tX*nh6MX23B`fC?Z0T!;dfLLR0~Urwdq-#r&I?+{YYcUDnd#J&Fx?smwf8-Mwa&ss=0?|NNC&-o<(AIjJ0Yqi%m)C zZ(Hlu+95e8ruppm<=M5S+Vrxr` z5-Ntp8Rawia8GYMeoC~0OCco4<=RA=7^YCZTgDlsO~pVt2tz0ppB1$0G?Ts=o^V)Mql+#xCQt2d`*In-H_t$SHl%WVK#$4A|y1mq_w9&g?WUaE?WB&l7K#*Cl z??SY#_Q5+tD#EJ4=bkYe4hKBy!p!K=CwkS}HRJ-daf9+#yA03oLG^ zIczDwa7vMm15hv~=dQQd=#ruB%;o_Det!Z z*8LvDmgSX;M%xhO6@{urwlx8Nc7c4g{{U7M8Jx)|%#3i%1TSvJ-r$4@a4qE_WOrDk zR(B2NMB7$EtBEE#Sx6z2?Z9aWWN6}5h%BMhZIquO)S}2Gj7G@Cwv>FfGFYQv5k7c}(NU=_h3}!Wre36KTLZNNyPDa&|8Dm*C#TzI;=>W!#LZ{sgnMeVY07{+Y z{JVCI*pE@Syq#GsZko{~yNOy^ZPxh9W~@csxQM(fXFS8pRh%1x0K+N}%vU~Jr6@SP zT6R~}rF~wy>362P6q`-PNyRn0Z+$J_r%imVxZQtn0E<-d-Fs&N}QlKv+5)v7$-WbegXyQm#=~`tf?ems(kZ{UW?srld*zP!2 zQIaxBq^Y+T%9Fd@wxfHu*7v`vU4ggB8Akf(`zNAnUXQZ-%P^(XlQa_`7V*Jqu}U|> z_w1k-d6GpU*{zwthz-!s$WplgN+Nq{A-950DdBywH2zna9I~ryky=MP$#w!r-*jGB zDinptTiNE4J8RvO&0r&pu(XKXPcXUJ99V&w0!0I?a!r-p6lF>-(7@MlRRzp&37^ZA zP=4&lm~1kvvmYyK$Vhfo00sg*z%d#-#XDL{yH@vfdTG;3H16H}*_?H0^lMe5l9J_5 zt?v4}b<<5v2!7leD@g5Tc4v@YUo5dgu`4k?Z<9Bd=0`Cha*XUr1a(j|t>L*hFLsvD z+pH=rQRJ3Zd#ihSjAC|#1-IF8B%9htl1XBPV-5!914~SaW4LH;ShD$%PF@LD%kvju zScJv!ZR2GoLiiqG#AJjd#@DYcmpOA3 za!SfpFD*x&56O_D@3sNfGD)=V@3yO3yS@ChzLrNcqS}m?EL&?ybdBQP)=mBTZ|8lb zb_^$1R-P4^V`))imM~odNYbN0EXq-2Xc;(MhXt{UY~f_Ld0S(&(M1&UN>L?fz+pSa z2xGS_iXzM?A81e%3e}3*)?^XI93n_p8b}Plm3IVe&POJ&uWhV+ zk!N!*M6kQ9v#Q7?Qg%%#c0(|SXk|MXAZ1;SK=TF84%gD!+22pIb$CWoE79mA6`NbXYUtW%A*SMRh4r097)}5Fkk?n7h0MTt?i2FkGsFq#5mDiEfr* zG_25!Bq$jzVQCoow+xOX^W_M;kdT0GGQ^#8krE>}*%HZjY-Ev4-zI$Gg<~-pSsTf9ekG1| zY&)|c2;2GG@#CJ*Ld4?GI zxQ;t{cf@v^SeMK5R&c2!kQuz9j3O$*ou6|6MRQ`&POuwt&K@P1r~T5w5esz?36>1s zFbWmZ%{v01WOc@MBA+XgjIDLeXM0IEWVh2tXJvbIcha3cRT;)IlGB;1X{2}A?)qN# zNNvE3vqFt0lw*oA9;AbEx&Yenfo20$zD7WyWthsbj zdcE(bd!uP7#-BP~>T1@N+@#vOX*X*vHP=OEK@hl#bxCe5r!j?&c*iWz&fBCCT&~dQ zn}}enNh%b`6dl>~Nh)0=F{`jLvN2q3ia0#e30?VV-9A)25{z(#fH+&z5le_=2_lHi zyT<@#NmMYAi7^lrrNfsCyJ#CwDLFApfi|=&A}E?gx;x5XqPK;ZLX|~O{SmDt?j%M*lDK59Jb zjpa`%Ln=6Azz8{s%0fhKmH-tQ&9}U~lUSD7wEL*E*zB$DEwy7kw6@xX-M}TSZSBLo z^2uUTbnMZ^Z6}((Q?u>|a&4^8tg)9cBvHic9B2zMW_0pQWujsvLd8xW4CDYns9q@I zQaq^=Q6P&lv`opC+Mj0HS+K~(kShN2ESJGRM;z(ur5i3;Chup=w9?HzF7#>L+22ED zF6mvbJ1>XcOMBba*R_*KhG^}sV^)Zz!`aO-n8zoWt0wHUY_TRsl5k`*lxSI2MLpTF zA|$Bs$t0^MmXaV<*#xe@Np%w_W|12nTV=2}2|nl|uKlVTaW$-~942VqDVfa88@kWXiF3p$pG?Wj^5rBg4t0+V5;qiLm~*u63Po9MhG*OV1}`) z7$oHjDOoB10Cv_^wzkn)_HRv|>gn^glfNo$MPGGf+xy;~5_=*uCz!LvBf^pWqFC_@ zJTB2Bs*uMtv4$yeGLqBJ@~D(55TyegtB2GrbhVBIhgZ2t3_|V*!pSsymNk2YKQ!A_ z3fz643J7-xbx(H`+g;g9H1I5nM2fMSvdtnYNsy(dkz))2`^hVQ?{EzoiT=+F(l8Tw z3j;?2M;ogGruXcMz$VG0NoL$zdm;1V=K{Q{vz_Fmq@tswm77WOwYzCQMcVrvRN}qX zl9w||(t0^ARoeHr=G~p{MHDwaYCQJ#@Y}*C{nDJc^7brZ5EIRix;rW)Lf^|!kLEiK zrlUnHvU$x35=!wnadRh`4Ww)3#cYBGWnkb*wn+;sIc1TIfPn2ARZU4Qrf8iS8;k2H zkdtjSfVD4&g{DC9tk%wqK7T4e%F6r}5j65!w5<%mY>mCTLoD80N~I=k=qFID(znbK z03P0SK6IIEmgkJ9)}sl*xk67@XUwe9yG?EAw7cD#a#V!eY@;nMwR$^UZ`bs`x3Q0N zHqrpTq2$|%h=LSZnOATldXPT1sRW>y0gh2p&;KM`nJ_J=gFyc+JE zaiiGHvP1rxZyd`6@Ie{{hEy@C$G%X`V^9DLUb^eBiF=Tjn$-*LYpH+ zQbCY3W!R$w87xTv?dN88>t%rXWM#U|L}Q2c^L zaMz}qoLbSYUS4LJUV8ey^>%uln0kp$GEbGoMfbZ-Iy)|&eJ|CY$oK7);EBE&e$%?n zt7h_A*!arBMDgvVuh~dbs99&j-Z8Lp##ff%wf!SdxVeHyR)%Z1+C?f++xj2>0D^J+ zN45Bs`#1P{#qS}#pTM^_8Uie{I%+n$CCQUg@cq2eg$ib~ih12dY{v$wU3+i#dWqfhNi_w1c9T(`mG9dB058Uv53J?*#R#|TRB?3e(KMwt zt*w%BT^5Vb{)uGS2Ih7vZssWVNUlR8M$w4M96OOCv34jOP$O+T6QdopYZGJaaifVR zEM+nnf_$kQYMYzqb|r?u;DUGr3W{SIB+{f(OByj(+QEQy!nA7~xMr2N0HF!UCnT@k zWu?4oj#SJFf)!RZDvKuOFtB5SfE6NW+#?kSZzp&3Efr*wT`raEt$6FLwYBeS==AJ< z0Vj8^`f8hZwY6{0x8KxkvOZEG?5XCIa=ucAW;hb7Iab&ie6uXlB}t6!e>)26P&bZhA3^H=Q=`7&SJtVm;fkF&~fvIY56B%9Tl-JR4o z%m@WR-!LgiX7b}VF{%Vun7oml?4cRR3T1GmxMpb;vQe(kWu{9$5qV$>kX3lW~vB12ReikOAH|LP!LuRZ`f^ zbkj+zYWC90@?BM*ZiZ8Dx6f^KwXOKys_M+x1dyY|%(n_$?RlM9hSGe+W>BAbLH_`jVVIMXyK@sLXNxVE*zHpxY;It+t&~>V zTYkxCo{4L|{TlVf$+VM7H+x=J=$B`*?{7UB8>Pf>s>>vjnHc$|Y;cbu3Rs0Lx-G&c z+@>=a@|Bgyt9I8?h2F4leZ)FEWu+wsRwk4OB0iXpAfX_k$qPwtEv1e*XZt{!YjS`~ zDUnE7OGc+|Jg1RRMq+MRPBO%TEXsjA#}csuCX_TpvOAI@35Q`eBP@3LTh|Ie2L#fy zX-Qp0CA&@Zw@d8*0N{jVl6OhA-m3j=eYI)XEiJvemaT86R1qXmm0Zlq`HnC{E4Iz& zD}6H*^4~HQcLgR@c6rnYFjh0SU~<6~n1U3j$&Foe zofK2jNnKjn>$Sf}x1UY<=Iq-~M)_U!dfDGwEn3li`;$hA5RAifwli)}!x#?D326@U z(*npt7E}u)SXLiCep;E>T||;4s>)1i%Bakw#~EdGokkHza-~8USB#bfh6}Jgw9nH_DT4*GksDsik}SuKV9h?XC40D%-^rZ7$nM;VCqQiX0$M zEcu8xCBO{Is3hf1*Wr}b#+@itM1L}9BY34)#&@if#z|Kwq+n+*p@_ydVBi>n86FMKtmQyr+8-@ar1IXQDzS+EwU!mkjRaXG0`xp12iod1{9A7r1Gw- zf6oCe!RL3Og^FVAL<55t7@aDl@nm{yTqZABERecHaj66L>pQ)OC-G z9tZuRJ{SB9v(mh2b8V@`tXSyw8qdUtE__Qpq;TEM4~ccXb3ySX=7|xN>?OO7)6PY- zj7R5JseFAJZMLbw)RI=x$x1D1@2b@|b>Cy#%BcS55mr`7N-8qa%}UBwN$YFfJ$2u$ zzB2JA!nfR^QCB8SaNvr5h@dw8`w!34XTwB|-#i+%of5oJ z!KTOH{W|x<-x_{2Xx|C1WboFZX8s!R9o3Y+5z;(s;_CrKcmJY90=?@P@JA zAB9@JyK8?80Ic2z@ZFxFr%hpRX$9@wliuFJ=fMWrbuUtOc9T(3gWkCe3Z%%ara}mC?U)W8B0k za>g-%F2_^9lH}lljE2~d7$S%VP^x2j<6Mbcu?v{vVY!T8jtK;GAcYmx8%aH#udUs> zd1pk6ARAN$ zUfJr2q+D3B9 zWRNHCgCNEOD>&c`^>#OWY%-*W}A0u zFX`)l(`%h{uVkL_R=<6<>bBjk_UK1-6G{s)E|`zZf@FM#LzYdSGblOU-!L*MO~W8o zW}l{5+1z={6})XUzHE~j6(f-D18HSb^PnIzNEoQ#ouC12Cyg1^5&~?i>Mtw2?Ag9kUVTiM+`KMSfHvlZ8w)V}92R#O+o>LlAL{p$WLn#WxL` z)y3&{pGNJj*1hzxeDjaGr0pkn6{YskuDe-k^xI1svJ!uH8v(}PK_4u{lw}+D5~V{E zxpE?0<1Pg-yal9M$VeG*%5dp-18Vp9UMgiuwK$uumxx9oVz$rA<2paYP_ zi5r^*vS>htS$9p6$fAETH3+gavu+Ai7X~FjT|iRIa-^$Z6PzU?Klvbx*1%J#ow zYJ02QrEd50v$fryYwU1(%RR$KyUUe+ZefpVzFC;%+-G1{0abx;56IZuqo26B*!I?e zE(CHzJIx}&5sncPq$V4Sj2W6qeC3ueEhUR;G8VyAt?PyY@W}(bit;O?NWr7Pc8&5Q z*y=z#V=Ol-0UV2fNvWwD#9Z67apiERRxsA(T|nN>N+J}&A0sC9+Au*QlNWDd)4jB{ zmaka8jW6?hTdCECPE{0@w|YG_d%mwtE$OgrJLA_~WM8$sX(940ulOQkG@TQhj$)TPs-Z)H||ysb_yIZZhQnLRAPA_f#sP zI6|GpMgyqjaHNK2Y!QqFBm%{bNg$J7lR_&Mn`RZ{?;2B$7~b--gkqliH00CYWov4F zmZtF8UIvR^^;Ig(-K(bK7`E2B@~tnm)rd6dCXv}?Qjx~YxsO9qe?1O-1Z zC76IQw2HMYxk=h0z#Gh_P1c#HqE_oS#ITd5b@}e>C+xCl@3Al_l;>Q?h z%!Pu#$WV+Z>evJlZ%+`FfHL8hXv=`)M$pJGRl(e^xpLSehQLyzc5wC!O%h4ROSOLM zrQNNo`??iV5Zt3S+_{vM`CHqSrlPb~c5N+mwbOT8!&nBtfX5stJcJXujlX?w9LP$U zNXn}@XN5-&1{(lwt@y2?9%PUO^CHNIfI^I`ZY1Xga2Plwjle37Kr+alW4s#(j6_{j z9Fh>IRcxP-5CHi`&T^zV0Zi0PSU&G$-59Vmjrl6FYcb~gtn`=dOo}8(*6qEcnGuqxb*pz3MZg&Bg@M2>eU6RXKQ!cD+4M(z8@Wq0{whz+GsjtIfz ziqbe}^Fhwtt*U8VJNdm8^tJ5wAJ*zP&M-~dD_Prgqt$4Vyq1frZIt7CVSgpMmW^$I zl1LGE25EyG#fI-Q%-9Q+$yN#uKrK&%rNBkCCI$s%Ws@Yf$86{30YkCMsm5`F*~MI7 zv6YPCYnJl_Our~heAp#GE>3q42~fMroK)6cOm87b(8W3i-l|#NK!13wTaXlusty8x zpmN5#<3~iV6uGsswUwgMz3!})uXeTaF`ZVR+EV6GicQPicHT`r?%QhjZri;XN=U?L z>vZ3{S<)iLK#3bG5@ZZY@EZYRY~_yJ1At(XDWKGR_#Q~%@>ES8H!Q(pA}JWL-5jIu z0zOhWlO=@p;KK$YByh(ni7Ik(q#8tl=1p?pH)*0f4BlE#;cxM}}2L zSR*P)E*XTZ3bb2-73vu9;aD#iIH^*;skWggHScSCF0TFUWujNnAycb%x%pQ-CCshv z`_2hFC8K>^^j2$jSh6iX3{l3!6`U^p=^HAricRWNmdQEbsW>Wf0Xnwv$LA|b6>b{e z%VZ@VX>Xi@+eYId#(I|u25@SgoR$5i%ikvA2Gmepy*VvE6)lrdtmA!8Dw0N zgC;d1J6~in*G)#SP6m7
    A5>A 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%0DYd@k0ral5}qwfejHqLS_kEyQf&Dm=*o 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

    tjbT1hJg{BQ6787=+1U)!20;|8 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� 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%0D?JqTHnN;4Tr)08`mx%*KWKu;r&)`6Zm7q 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

    Nmv?`Ix%zD1$t&MEOcS1HA+$zO7UP_4zQ}vC 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 z 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%0Dq>mJkURgVj z^c$Ep7)0wVVl-(!()$PrwDi%c+|p}A?S8UO$*q!FExi--=c!3WOGcHV)99?XPg}l^ zb#GIw(=HRkx`v&mJV~keJ6wUaUk@&cZ}z)r&D;|{yA)PSBeWWPQHxD`Pk2d|>TOcw z#|(&)6zp!N4+oPQNqH6YHtN^J`F4qEHN{`kzYWi& zTnCaF?knhx3s?UDgo$*exsDih38$VpXJRF^w7AnQyvxftEmac>=B3DnON3QxceW%j zk%07+WUU*kS~tG#_Ig=2t(J*9Hug%#3XS=BugtG|>9bAQC91nh?d#V1oh^=TEg`eK zb}g&VBzH{>!dzWVBbk~3cWB^STD0G1a_xn(W-^vD&?b#+LRMFB8QK z?2*{REaE#mk1}*wV1;IkOj<3k61x?T%PK0oH-=?`?%qVQx6@krKFK@*((ck$U$JUX z%oIEyWVk37ddG2b12UM5QSPdmzNx8{w_~M8CaHIGVHcNcBCwJlvd`t*Kbx2)v;kU6 zt6PDMrWoLFG1v){O6j|4X1nUGYxTPM`XEuX)6-X~y{y%jT{hPC-&LX`I*hVK16kYH zS?U7)Vf#?Tuox%4xoNGGT;e!lmBU5)qLn8@Y?CB@ zWxtsi45D63q?EkcYS(Vv8*feZ-7e@SeUh?zS!mv=q}sCS{&v`#PSd8AMmh<67*#%>V$}&c=nG}sV%0AC; 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 XD^xMr~`^6QK0f*9|M2P=~K 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

    &dOOoqjl04KKvH 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

    %g$+ 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 + <%=task.description%> + + + + +

  • + <%=task.completed_at%> + +
  • + */ + + +.heading{ + text-align: center; +} + + .task_description{ - background-color: green; - font-family: american type writer; + font-family: American Typewriter; margin: 2rem; width: 15%; display: inline-block; list-style-type: none; + border-radius: 25px; } +.words{ + margin-top: 6rem; + +} + + +/* +.image:before { + content: ""; + position: fixed; + top: 0; + left: 0; + background-image: url("./notes.jpg"); + width: 100%; + height: 100%; + opacity : 0.6; + z-index: -1; + background-size: cover; + background-repeat: repeat; + background-attachment: fixed; +}*/ + + + .more_info{ background-color: gray; text-align: center; @@ -36,6 +79,7 @@ margin-right: auto; } -.index { - background-color: white; +.body { + background-color: gray; + background-image: url("./notes.jpg"); } diff --git a/TaskListRails/app/controllers/tasklist_controller.rb b/TaskListRails/app/controllers/tasklist_controller.rb index f38d783f3..cc5e6ac44 100644 --- a/TaskListRails/app/controllers/tasklist_controller.rb +++ b/TaskListRails/app/controllers/tasklist_controller.rb @@ -62,6 +62,10 @@ def delete end end + def people + + end + private def tasklist_params diff --git a/TaskListRails/app/views/tasklist/index.html.erb b/TaskListRails/app/views/tasklist/index.html.erb index a6c123ff3..9a37a988b 100644 --- a/TaskListRails/app/views/tasklist/index.html.erb +++ b/TaskListRails/app/views/tasklist/index.html.erb @@ -1,44 +1,40 @@ -

    Task List

    -
    +
    <%@all_tasklist.each do |task|%>
      -
    • - <%= link_to task.title, rails_task_list_path(task.id)%> -
    • +
      - <%= link_to 'Delete',delete_path(task.id), +
    • + <%= link_to task.title, rails_task_list_path(task.id)%> +
    • - method: :delete, - data: { confirm: 'Are you sure?' } %> - +
    • + <%if task.person != nil%> + <%=task.person.name%> + <%end%> -
    • - <%= link_to "edit task", edit_tasklist_path(task.id)%> -
    • -
    • - <%="Description"%> - <%=task.description%> -
    • + -
    • - <%if task.person != nil%> - <%=task.person.name%> - <%end%> +
    • + <%= link_to "Edit task", edit_tasklist_path(task.id)%> +
    • - -
    • - <%=task.completed_at%> -
    • +
    • + <%= link_to 'Delete',delete_path(task.id), + method: :delete, + data: { confirm: 'Are you sure?' } %> +
    • - <%=link_to "Done!",done_task_list_path(task.id),method: :patch%> + <%=link_to "Done!",done_task_list_path(task.id),method: :patch%> +
    <% end %> diff --git a/TaskListRails/app/views/tasklist/show.erb b/TaskListRails/app/views/tasklist/show.erb index 6da6b4d3f..8a15e6e9d 100644 --- a/TaskListRails/app/views/tasklist/show.erb +++ b/TaskListRails/app/views/tasklist/show.erb @@ -5,7 +5,7 @@ <%=@all_tasklist.title%> -
  • +
  • <%=@all_tasklist.description%>
  • From a83d3bd7860d98bb7ed38ca5698d73a0f4f1a7c5 Mon Sep 17 00:00:00 2001 From: Sarah Date: Mon, 25 Apr 2016 16:07:50 -0700 Subject: [PATCH 09/23] more stuff --- .../app/assets/javascripts/people.coffee | 3 +++ .../app/assets/stylesheets/people.scss | 3 +++ TaskListRails/app/controllers/.DS_Store | Bin 0 -> 6148 bytes .../app/controllers/people_controller.rb | 16 +++++++++++++++ .../app/controllers/tasklist_controller.rb | 3 --- TaskListRails/app/helpers/people_helper.rb | 2 ++ TaskListRails/app/views/.DS_Store | Bin 0 -> 6148 bytes TaskListRails/app/views/people/.DS_Store | Bin 0 -> 6148 bytes TaskListRails/app/views/people/all_tasks.erb | 5 +++++ TaskListRails/app/views/people/index.html.erb | 10 +++++++++ TaskListRails/app/views/people/show.html.erb | 19 ++++++++++++++++++ .../app/views/tasklist/index.html.erb | 4 +++- .../config/environments/production.rb | 4 ++-- TaskListRails/config/routes.rb | 5 +++-- .../controllers/people_controller_test.rb | 7 +++++++ 15 files changed, 73 insertions(+), 8 deletions(-) create mode 100644 TaskListRails/app/assets/javascripts/people.coffee create mode 100644 TaskListRails/app/assets/stylesheets/people.scss create mode 100644 TaskListRails/app/controllers/.DS_Store create mode 100644 TaskListRails/app/controllers/people_controller.rb create mode 100644 TaskListRails/app/helpers/people_helper.rb create mode 100644 TaskListRails/app/views/.DS_Store create mode 100644 TaskListRails/app/views/people/.DS_Store create mode 100644 TaskListRails/app/views/people/all_tasks.erb create mode 100644 TaskListRails/app/views/people/index.html.erb create mode 100644 TaskListRails/app/views/people/show.html.erb create mode 100644 TaskListRails/test/controllers/people_controller_test.rb diff --git a/TaskListRails/app/assets/javascripts/people.coffee b/TaskListRails/app/assets/javascripts/people.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/TaskListRails/app/assets/javascripts/people.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/TaskListRails/app/assets/stylesheets/people.scss b/TaskListRails/app/assets/stylesheets/people.scss new file mode 100644 index 000000000..e6ee13d8f --- /dev/null +++ b/TaskListRails/app/assets/stylesheets/people.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the people controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/TaskListRails/app/controllers/.DS_Store b/TaskListRails/app/controllers/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0list of tasks + +<%@list.each do |task|%> +<%= task.title%> +<%end%> diff --git a/TaskListRails/app/views/people/index.html.erb b/TaskListRails/app/views/people/index.html.erb new file mode 100644 index 000000000..850d1281c --- /dev/null +++ b/TaskListRails/app/views/people/index.html.erb @@ -0,0 +1,10 @@ +
    + + <%@all_people.each do |task|%> +
  • + <%=link_to task.name, person_path(task.id)%> +
  • + + + <%end%> +
    More Info + +<%=@all_people.name%> + +<%=link_to 'all_tasklist', "/people/#{@person.id}/all_tasks"%> + + + + + +
  • + <%= link_to "home", root_path%> +
  • + +
  • + +<%= link_to "People", '/people'%> +
  • diff --git a/TaskListRails/app/views/tasklist/index.html.erb b/TaskListRails/app/views/tasklist/index.html.erb index 9a37a988b..3a46d5e5f 100644 --- a/TaskListRails/app/views/tasklist/index.html.erb +++ b/TaskListRails/app/views/tasklist/index.html.erb @@ -4,6 +4,8 @@ <%@all_tasklist.each do |task|%>
      + +
      - + <%= link_to "People", '/people'%> <%= link_to "Add new Task", tasklist_new_path%> <%= link_to "home", root_path%>
      diff --git a/TaskListRails/config/environments/production.rb b/TaskListRails/config/environments/production.rb index 5c1b32e48..9f0e7c93b 100644 --- a/TaskListRails/config/environments/production.rb +++ b/TaskListRails/config/environments/production.rb @@ -22,14 +22,14 @@ # 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? + config.serve_static_files = true # Compress JavaScripts and CSS. config.assets.js_compressor = :uglifier # config.assets.css_compressor = :sass # Do not fallback to assets pipeline if a precompiled asset is missed. - config.assets.compile = false + config.assets.compile = 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. diff --git a/TaskListRails/config/routes.rb b/TaskListRails/config/routes.rb index afeed8d1a..63815bcb2 100644 --- a/TaskListRails/config/routes.rb +++ b/TaskListRails/config/routes.rb @@ -19,8 +19,9 @@ patch '/tasklist/:id/done' => 'tasklist#finished', as: "done_task_list" patch '/tasklist/:id' => 'tasklist#update' delete '/tasklist/:id' => 'tasklist#delete', as: 'delete' - - + get '/people' => 'people#index' + get '/person/:id' => 'people#show', as: 'person' + get '/people/:id/all_tasklist' => 'people#all_tasklist' diff --git a/TaskListRails/test/controllers/people_controller_test.rb b/TaskListRails/test/controllers/people_controller_test.rb new file mode 100644 index 000000000..e75205679 --- /dev/null +++ b/TaskListRails/test/controllers/people_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class PeopleControllerTest < ActionController::TestCase + # test "the truth" do + # assert true + # end +end From 116248290620452a736721e063e06cab0d367e09 Mon Sep 17 00:00:00 2001 From: Sarah Date: Mon, 25 Apr 2016 16:21:30 -0700 Subject: [PATCH 10/23] more changes --- .../app/controllers/.DS_Store => .DS_Store | Bin TaskListRails/Gemfile => Gemfile | 0 TaskListRails/Gemfile.lock => Gemfile.lock | 0 TaskListRails/README.rdoc => README.rdoc | 0 TaskListRails/Rakefile => Rakefile | 0 TaskListRails/.gitignore | 17 - .../app => app}/assets/images/.keep | 0 .../app => app}/assets/images/face.png | Bin .../app => app}/assets/images/note.jpg | Bin .../app => app}/assets/images/notes.jpg | Bin .../assets/javascripts/application.js | 0 .../assets/javascripts/people.coffee | 0 .../assets/javascripts/tasklist.coffee | 0 .../assets/stylesheets/application.css | 0 .../assets/stylesheets/people.scss | 0 .../assets/stylesheets/tasklist.scss | 0 .../app/views => app/controllers}/.DS_Store | Bin .../controllers/application_controller.rb | 0 .../app => app}/controllers/concerns/.keep | 0 .../controllers/people_controller.rb | 0 .../controllers/tasklist_controller.rb | 0 .../app => app}/helpers/application_helper.rb | 0 .../app => app}/helpers/people_helper.rb | 0 .../app => app}/helpers/tasklist_helper.rb | 0 {TaskListRails/app => app}/mailers/.keep | 0 {TaskListRails/app => app}/models/.keep | 0 .../app => app}/models/concerns/.keep | 0 {TaskListRails/app => app}/models/person.rb | 0 .../app => app}/models/rails_task_list.rb | 0 .../app/views/people => app/views}/.DS_Store | Bin .../views/layouts/application.html.erb | 0 .../tasklist => app/views/people}/.DS_Store | Bin .../app => app}/views/people/all_tasks.erb | 0 .../app => app}/views/people/index.html.erb | 0 .../app => app}/views/people/show.html.erb | 0 app/views/tasklist/.DS_Store | Bin 0 -> 6148 bytes .../app => app}/views/tasklist/by_title.erb | 0 .../app => app}/views/tasklist/destroy.erb | 0 .../app => app}/views/tasklist/index.html.erb | 0 .../app => app}/views/tasklist/new.erb | 0 .../app => app}/views/tasklist/show.erb | 0 {TaskListRails/bin => bin}/bundle | 0 {TaskListRails/bin => bin}/rails | 0 {TaskListRails/bin => bin}/rake | 0 {TaskListRails/bin => bin}/setup | 0 {TaskListRails/bin => bin}/spring | 0 TaskListRails/config.ru => config.ru | 0 .../config => config}/application.rb | 0 {TaskListRails/config => config}/boot.rb | 0 {TaskListRails/config => config}/database.yml | 0 .../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 .../config => config}/locales/en.yml | 0 {TaskListRails/config => config}/routes.rb | 0 {TaskListRails/config => config}/secrets.yml | 0 db/development.sqlite3 | Bin 0 -> 24576 bytes .../20160419202627_create_rails_task_lists.rb | 0 .../migrate/20160422204902_create_people.rb | 0 ...60422212851_add_column_people_and_tasks.rb | 0 {TaskListRails/db => db}/schema.rb | 0 {TaskListRails/db => db}/seeds.rb | 0 {TaskListRails/lib => lib}/assets/.keep | 0 {TaskListRails/lib => lib}/tasks/.keep | 0 {TaskListRails/log => log}/.keep | 0 log/development.log | 90155 ++++++++++++++++ {TaskListRails/public => public}/404.html | 0 {TaskListRails/public => public}/422.html | 0 {TaskListRails/public => public}/500.html | 0 {TaskListRails/public => public}/favicon.ico | 0 {TaskListRails/public => public}/robots.txt | 0 seeds.rb | 20 - .../test => test}/controllers/.keep | 0 .../controllers/people_controller_test.rb | 0 .../controllers/tasklist_controller_test.rb | 0 {TaskListRails/test => test}/fixtures/.keep | 0 .../test => test}/fixtures/people.yml | 0 .../fixtures/rails_task_lists.yml | 0 {TaskListRails/test => test}/helpers/.keep | 0 .../test => test}/integration/.keep | 0 {TaskListRails/test => test}/mailers/.keep | 0 {TaskListRails/test => test}/models/.keep | 0 .../test => test}/models/person_test.rb | 0 .../models/rails_task_list_test.rb | 0 {TaskListRails/test => test}/test_helper.rb | 0 .../assets/javascripts/.keep | 0 .../assets/stylesheets/.keep | 0 96 files changed, 90155 insertions(+), 37 deletions(-) rename TaskListRails/app/controllers/.DS_Store => .DS_Store (100%) rename TaskListRails/Gemfile => Gemfile (100%) rename TaskListRails/Gemfile.lock => Gemfile.lock (100%) rename TaskListRails/README.rdoc => README.rdoc (100%) rename TaskListRails/Rakefile => Rakefile (100%) delete mode 100644 TaskListRails/.gitignore rename {TaskListRails/app => app}/assets/images/.keep (100%) rename {TaskListRails/app => app}/assets/images/face.png (100%) rename {TaskListRails/app => app}/assets/images/note.jpg (100%) rename {TaskListRails/app => app}/assets/images/notes.jpg (100%) rename {TaskListRails/app => app}/assets/javascripts/application.js (100%) rename {TaskListRails/app => app}/assets/javascripts/people.coffee (100%) rename {TaskListRails/app => app}/assets/javascripts/tasklist.coffee (100%) rename {TaskListRails/app => app}/assets/stylesheets/application.css (100%) rename {TaskListRails/app => app}/assets/stylesheets/people.scss (100%) rename {TaskListRails/app => app}/assets/stylesheets/tasklist.scss (100%) rename {TaskListRails/app/views => app/controllers}/.DS_Store (100%) rename {TaskListRails/app => app}/controllers/application_controller.rb (100%) rename {TaskListRails/app => app}/controllers/concerns/.keep (100%) rename {TaskListRails/app => app}/controllers/people_controller.rb (100%) rename {TaskListRails/app => app}/controllers/tasklist_controller.rb (100%) rename {TaskListRails/app => app}/helpers/application_helper.rb (100%) rename {TaskListRails/app => app}/helpers/people_helper.rb (100%) rename {TaskListRails/app => app}/helpers/tasklist_helper.rb (100%) rename {TaskListRails/app => app}/mailers/.keep (100%) rename {TaskListRails/app => app}/models/.keep (100%) rename {TaskListRails/app => app}/models/concerns/.keep (100%) rename {TaskListRails/app => app}/models/person.rb (100%) rename {TaskListRails/app => app}/models/rails_task_list.rb (100%) rename {TaskListRails/app/views/people => app/views}/.DS_Store (100%) rename {TaskListRails/app => app}/views/layouts/application.html.erb (100%) rename {TaskListRails/app/views/tasklist => app/views/people}/.DS_Store (100%) rename {TaskListRails/app => app}/views/people/all_tasks.erb (100%) rename {TaskListRails/app => app}/views/people/index.html.erb (100%) rename {TaskListRails/app => app}/views/people/show.html.erb (100%) create mode 100644 app/views/tasklist/.DS_Store rename {TaskListRails/app => app}/views/tasklist/by_title.erb (100%) rename {TaskListRails/app => app}/views/tasklist/destroy.erb (100%) rename {TaskListRails/app => app}/views/tasklist/index.html.erb (100%) rename {TaskListRails/app => app}/views/tasklist/new.erb (100%) rename {TaskListRails/app => app}/views/tasklist/show.erb (100%) rename {TaskListRails/bin => bin}/bundle (100%) rename {TaskListRails/bin => bin}/rails (100%) rename {TaskListRails/bin => bin}/rake (100%) rename {TaskListRails/bin => bin}/setup (100%) rename {TaskListRails/bin => bin}/spring (100%) rename TaskListRails/config.ru => config.ru (100%) rename {TaskListRails/config => config}/application.rb (100%) rename {TaskListRails/config => config}/boot.rb (100%) rename {TaskListRails/config => config}/database.yml (100%) rename {TaskListRails/config => config}/environment.rb (100%) rename {TaskListRails/config => config}/environments/development.rb (100%) rename {TaskListRails/config => config}/environments/production.rb (100%) rename {TaskListRails/config => config}/environments/test.rb (100%) rename {TaskListRails/config => config}/initializers/assets.rb (100%) rename {TaskListRails/config => config}/initializers/backtrace_silencers.rb (100%) rename {TaskListRails/config => config}/initializers/cookies_serializer.rb (100%) rename {TaskListRails/config => config}/initializers/filter_parameter_logging.rb (100%) rename {TaskListRails/config => config}/initializers/inflections.rb (100%) rename {TaskListRails/config => config}/initializers/mime_types.rb (100%) rename {TaskListRails/config => config}/initializers/session_store.rb (100%) rename {TaskListRails/config => config}/initializers/wrap_parameters.rb (100%) rename {TaskListRails/config => config}/locales/en.yml (100%) rename {TaskListRails/config => config}/routes.rb (100%) rename {TaskListRails/config => config}/secrets.yml (100%) create mode 100644 db/development.sqlite3 rename {TaskListRails/db => db}/migrate/20160419202627_create_rails_task_lists.rb (100%) rename {TaskListRails/db => db}/migrate/20160422204902_create_people.rb (100%) rename {TaskListRails/db => db}/migrate/20160422212851_add_column_people_and_tasks.rb (100%) rename {TaskListRails/db => db}/schema.rb (100%) rename {TaskListRails/db => db}/seeds.rb (100%) rename {TaskListRails/lib => lib}/assets/.keep (100%) rename {TaskListRails/lib => lib}/tasks/.keep (100%) rename {TaskListRails/log => log}/.keep (100%) create mode 100644 log/development.log rename {TaskListRails/public => public}/404.html (100%) rename {TaskListRails/public => public}/422.html (100%) rename {TaskListRails/public => public}/500.html (100%) rename {TaskListRails/public => public}/favicon.ico (100%) rename {TaskListRails/public => public}/robots.txt (100%) delete mode 100644 seeds.rb rename {TaskListRails/test => test}/controllers/.keep (100%) rename {TaskListRails/test => test}/controllers/people_controller_test.rb (100%) rename {TaskListRails/test => test}/controllers/tasklist_controller_test.rb (100%) rename {TaskListRails/test => test}/fixtures/.keep (100%) rename {TaskListRails/test => test}/fixtures/people.yml (100%) rename {TaskListRails/test => test}/fixtures/rails_task_lists.yml (100%) rename {TaskListRails/test => test}/helpers/.keep (100%) rename {TaskListRails/test => test}/integration/.keep (100%) rename {TaskListRails/test => test}/mailers/.keep (100%) rename {TaskListRails/test => test}/models/.keep (100%) rename {TaskListRails/test => test}/models/person_test.rb (100%) rename {TaskListRails/test => test}/models/rails_task_list_test.rb (100%) rename {TaskListRails/test => test}/test_helper.rb (100%) rename {TaskListRails/vendor => vendor}/assets/javascripts/.keep (100%) rename {TaskListRails/vendor => vendor}/assets/stylesheets/.keep (100%) diff --git a/TaskListRails/app/controllers/.DS_Store b/.DS_Store similarity index 100% rename from TaskListRails/app/controllers/.DS_Store rename to .DS_Store diff --git a/TaskListRails/Gemfile b/Gemfile similarity index 100% rename from TaskListRails/Gemfile rename to Gemfile diff --git a/TaskListRails/Gemfile.lock b/Gemfile.lock similarity index 100% rename from TaskListRails/Gemfile.lock rename to Gemfile.lock diff --git a/TaskListRails/README.rdoc b/README.rdoc similarity index 100% rename from TaskListRails/README.rdoc rename to README.rdoc diff --git a/TaskListRails/Rakefile b/Rakefile similarity index 100% rename from TaskListRails/Rakefile rename to Rakefile diff --git a/TaskListRails/.gitignore b/TaskListRails/.gitignore deleted file mode 100644 index 050c9d95c..000000000 --- a/TaskListRails/.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/TaskListRails/app/assets/images/.keep b/app/assets/images/.keep similarity index 100% rename from TaskListRails/app/assets/images/.keep rename to app/assets/images/.keep diff --git a/TaskListRails/app/assets/images/face.png b/app/assets/images/face.png similarity index 100% rename from TaskListRails/app/assets/images/face.png rename to app/assets/images/face.png diff --git a/TaskListRails/app/assets/images/note.jpg b/app/assets/images/note.jpg similarity index 100% rename from TaskListRails/app/assets/images/note.jpg rename to app/assets/images/note.jpg diff --git a/TaskListRails/app/assets/images/notes.jpg b/app/assets/images/notes.jpg similarity index 100% rename from TaskListRails/app/assets/images/notes.jpg rename to app/assets/images/notes.jpg diff --git a/TaskListRails/app/assets/javascripts/application.js b/app/assets/javascripts/application.js similarity index 100% rename from TaskListRails/app/assets/javascripts/application.js rename to app/assets/javascripts/application.js diff --git a/TaskListRails/app/assets/javascripts/people.coffee b/app/assets/javascripts/people.coffee similarity index 100% rename from TaskListRails/app/assets/javascripts/people.coffee rename to app/assets/javascripts/people.coffee diff --git a/TaskListRails/app/assets/javascripts/tasklist.coffee b/app/assets/javascripts/tasklist.coffee similarity index 100% rename from TaskListRails/app/assets/javascripts/tasklist.coffee rename to app/assets/javascripts/tasklist.coffee diff --git a/TaskListRails/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css similarity index 100% rename from TaskListRails/app/assets/stylesheets/application.css rename to app/assets/stylesheets/application.css diff --git a/TaskListRails/app/assets/stylesheets/people.scss b/app/assets/stylesheets/people.scss similarity index 100% rename from TaskListRails/app/assets/stylesheets/people.scss rename to app/assets/stylesheets/people.scss diff --git a/TaskListRails/app/assets/stylesheets/tasklist.scss b/app/assets/stylesheets/tasklist.scss similarity index 100% rename from TaskListRails/app/assets/stylesheets/tasklist.scss rename to app/assets/stylesheets/tasklist.scss diff --git a/TaskListRails/app/views/.DS_Store b/app/controllers/.DS_Store similarity index 100% rename from TaskListRails/app/views/.DS_Store rename to app/controllers/.DS_Store diff --git a/TaskListRails/app/controllers/application_controller.rb b/app/controllers/application_controller.rb similarity index 100% rename from TaskListRails/app/controllers/application_controller.rb rename to app/controllers/application_controller.rb diff --git a/TaskListRails/app/controllers/concerns/.keep b/app/controllers/concerns/.keep similarity index 100% rename from TaskListRails/app/controllers/concerns/.keep rename to app/controllers/concerns/.keep diff --git a/TaskListRails/app/controllers/people_controller.rb b/app/controllers/people_controller.rb similarity index 100% rename from TaskListRails/app/controllers/people_controller.rb rename to app/controllers/people_controller.rb diff --git a/TaskListRails/app/controllers/tasklist_controller.rb b/app/controllers/tasklist_controller.rb similarity index 100% rename from TaskListRails/app/controllers/tasklist_controller.rb rename to app/controllers/tasklist_controller.rb diff --git a/TaskListRails/app/helpers/application_helper.rb b/app/helpers/application_helper.rb similarity index 100% rename from TaskListRails/app/helpers/application_helper.rb rename to app/helpers/application_helper.rb diff --git a/TaskListRails/app/helpers/people_helper.rb b/app/helpers/people_helper.rb similarity index 100% rename from TaskListRails/app/helpers/people_helper.rb rename to app/helpers/people_helper.rb diff --git a/TaskListRails/app/helpers/tasklist_helper.rb b/app/helpers/tasklist_helper.rb similarity index 100% rename from TaskListRails/app/helpers/tasklist_helper.rb rename to app/helpers/tasklist_helper.rb diff --git a/TaskListRails/app/mailers/.keep b/app/mailers/.keep similarity index 100% rename from TaskListRails/app/mailers/.keep rename to app/mailers/.keep diff --git a/TaskListRails/app/models/.keep b/app/models/.keep similarity index 100% rename from TaskListRails/app/models/.keep rename to app/models/.keep diff --git a/TaskListRails/app/models/concerns/.keep b/app/models/concerns/.keep similarity index 100% rename from TaskListRails/app/models/concerns/.keep rename to app/models/concerns/.keep diff --git a/TaskListRails/app/models/person.rb b/app/models/person.rb similarity index 100% rename from TaskListRails/app/models/person.rb rename to app/models/person.rb diff --git a/TaskListRails/app/models/rails_task_list.rb b/app/models/rails_task_list.rb similarity index 100% rename from TaskListRails/app/models/rails_task_list.rb rename to app/models/rails_task_list.rb diff --git a/TaskListRails/app/views/people/.DS_Store b/app/views/.DS_Store similarity index 100% rename from TaskListRails/app/views/people/.DS_Store rename to app/views/.DS_Store diff --git a/TaskListRails/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb similarity index 100% rename from TaskListRails/app/views/layouts/application.html.erb rename to app/views/layouts/application.html.erb diff --git a/TaskListRails/app/views/tasklist/.DS_Store b/app/views/people/.DS_Store similarity index 100% rename from TaskListRails/app/views/tasklist/.DS_Store rename to app/views/people/.DS_Store diff --git a/TaskListRails/app/views/people/all_tasks.erb b/app/views/people/all_tasks.erb similarity index 100% rename from TaskListRails/app/views/people/all_tasks.erb rename to app/views/people/all_tasks.erb diff --git a/TaskListRails/app/views/people/index.html.erb b/app/views/people/index.html.erb similarity index 100% rename from TaskListRails/app/views/people/index.html.erb rename to app/views/people/index.html.erb diff --git a/TaskListRails/app/views/people/show.html.erb b/app/views/people/show.html.erb similarity index 100% rename from TaskListRails/app/views/people/show.html.erb rename to app/views/people/show.html.erb diff --git a/app/views/tasklist/.DS_Store b/app/views/tasklist/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0ZPwr1XwcH6xkO(p1%8RHZ#Elijcs~&d;Ly* zdzZf3*roNI=GOWq+<&LB*`%9W@Yvbdc%7EAAPaek9(hTt?IqCQ^R$%&hglFuqs^_j za~N{bx|e2N)=e)ka(~au#@Z9^Wv8t^oMl0Wj}G2F6s`TcF0vo;B!vNmQ$dvRI2kMzS3Hfeh) z|FFxW7N5AB9`kI%_?npQ>u_foHf%47c=~Oh&18T~UVpdZseCejkIWnqv_YBK?`$qO}BJ=4t$b}kHr4} zU+{zn5%ybL4;Mb0|JA~S;_v65nfudRUipJ!E9Ly(mA@)KSDwxPBmYVM zlP4GhP7Mhl0VIF~kN^^RY6#Sy%abLTZN0wlr~97x7e&-k7dpDMURIhJ(hr2vY)0e%l6Q>#VU>^4Z}5bs%kY&8}_1${&mA; zdc|gzHED_S3Q?V9n3nXG7l!ms+@Wzod6@33DC8w5sRhgJZbX|QuqG+($3x$*T?lf9{4}l+oK^{1ECw*CQJ7;Glg! zPEvZ`YdxUHUgASPOw}Bf)u`sUy6tK@*Nn7 z-VTm9y%%@*{n$UIyK$Gk9Y?Qb^xY_aNVgIi#n~9?nxkq!no(923uazLTC=L!8HKT_ z2+OZu$`f@(%mg4D)1L%BkLeneF{clMtWEcmfJc5hHo9$!b=FL(Ypz*!4fBe1hR??| z{bCTp!e7i2wj$PiEv8va@9|a~`E;Wjwc77rJpRR<^ja}`tobQ}?grslvWgt`4G zh1^=~j%J)?zdquc zYntG>jdEaszdwk&rZ+Lx+ zsQ=Fu|3ivj!XG@401`j~NB{{S0VIF~kN^@u0!RP}Ac3clz+6tgA@zUiLjJxatJ37J zJgoG;|G!9ze=7#X#i!6koH7zX0!RP}AOR$R1dsp{Kmter2_S*TC9o~ekXwa%z2S?3 zpC%8|APk^lq>;6G$fL9Rw9(on-KyCaS2gu4KhDh%75aQX2%)bIt^09!*zTUyiH-GT r)a;9^)O2B4muARK=:0x007f9177d93900> +Did you mean? @tasklist): + 4:
        + 5: <%@tasklist.each do |task|%> + 6:
      • + 7: <%= lint_to task.title "#{tasklist.title}"%> + 8:
      • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131378848760' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131378848760' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.6ms) + + +Started GET "/" for ::1 at 2016-04-19 15:19:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (28.6ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007f91731e3af0> +Did you mean? @tasklist): + 4:
          + 5: <%@tasklist.each do |task|%> + 6:
        • + 7: <%= lint_to tasklist.title "#{tasklist.title}"%> + 8:
        • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131339170560' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131339170560' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.9ms) + Rendered /Users/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:19:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (25.9ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007f91733e6e60> +Did you mean? @tasklist): + 4:
            + 5: <%@tasklist.each do |task|%> + 6:
          • + 7: <%= lint_to tasklist.title "#{tasklist.title}"%> + 8:
          • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131339170560' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131339170560' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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:19:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (29.5ms) +Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007f917507c6b0> +Did you mean? @tasklist): + 4:
              + 5: <%@tasklist.each do |task|%> + 6:
            • + 7: <%= lint_to tasklist.title, "#{tasklist.title}"%> + 8:
            • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131355183480' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131355183480' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.8ms) + + +Started GET "/" for ::1 at 2016-04-19 15:19:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (26.1ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007f9177f98db8> +Did you mean? @tasklist): + 4:
                + 5: <%@tasklist.each do |task|%> + 6:
              • + 7: <%= lint_to tasklist.title, "#{tasklist.title}"%> + 8:
              • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131355183480' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131355183480' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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-19 15:19:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (27.9ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007f9179cbf5b8> +Did you mean? @tasklist): + 4:
                  + 5: <%@tasklist.each do |task|%> + 6:
                • + 7: <%= link_to tasklist.title, "#{tasklist.title}"%> + 8:
                • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131395194920' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131395194920' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.4ms) + + +Started GET "/" for ::1 at 2016-04-19 15:19:57 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (26.5ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007f9174771958> +Did you mean? @tasklist): + 4:
                    + 5: <%@tasklist.each do |task|%> + 6:
                  • + 7: <%= link_to tasklist.title, "#{tasklist.title}"%> + 8:
                  • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131395194920' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131395194920' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:20:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (27.3ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007f91767a83c0> +Did you mean? @tasklist): + 4:
                      + 5: <%@tasklist.each do |task|%> + 6:
                    • + 7: <%= link_to tasklist.title, "#{tasklist.title}"%> + 8:
                    • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131395194920' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131395194920' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:21:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (31.5ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007f9177be0e50> +Did you mean? @tasklist): + 4:
                        + 5: <%@tasklist.each do |task|%> + 6:
                      • + 7: <%= lint_to tasklist.title, "#{tasklist.title}"%> + 8:
                      • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131377950320' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131377950320' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.8ms) + + +Started GET "/" for ::1 at 2016-04-19 15:21:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (25.8ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007f9179b22890> +Did you mean? @tasklist): + 4:
                          + 5: <%@tasklist.each do |task|%> + 6:
                        • + 7: <%= lint_to tasklist.title, "#{tasklist.title}"%> + 8:
                        • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131377950320' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131377950320' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:21:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (19.0ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `lint_to' for #<#:0x007f9179dc2460> +Did you mean? link_to): + 4:
                            + 5: <%@tasklist.each do |task|%> + 6:
                          • + 7: <%= lint_to task.title, "#{task.title}"%> + 8:
                          • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131395725380' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131395725380' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:21:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (25.0ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `lint_to' for #<#:0x007f91739d2b08> +Did you mean? link_to): + 4:
                              + 5: <%@tasklist.each do |task|%> + 6:
                            • + 7: <%= lint_to task.title, "#{task.title}"%> + 8:
                            • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131395725380' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131395725380' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 15:22:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:22:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:22:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:22:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:22:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:22:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:22:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:22:11 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:22:14 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:22:15 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (54.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.0ms) + Rendered /Users/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.0ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:22:18 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendered /Users/sakne/.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/sakne/.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 (53.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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%20Lunch" for ::1 at 2016-04-19 15:22:18 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (48.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:22:22 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.8ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:22:22 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) + Rendered /Users/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.4ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:22:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (43.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:22:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (45.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.7ms) + + +Started GET "/10,000%20Maniacs" for ::1 at 2016-04-19 15:23:11 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"10,000 Maniacs"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (44.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.1ms) + + +Started GET "/10,000%20Maniacs" for ::1 at 2016-04-19 15:23:12 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"10,000 Maniacs"} +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:23:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) + + +Started GET "/10,000%20Maniacs" for ::1 at 2016-04-19 15:23:19 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"10,000 Maniacs"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (44.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.3ms) + + +Started GET "/1" for ::1 at 2016-04-19 15:23:21 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"1"} +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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-19 15:26:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:26:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:26:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:26:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:26:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:26:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:26:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:26:29 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:26:31 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (45.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.9ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:26:31 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (52.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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-19 15:27:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:27:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:27:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:27:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:27:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:27:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:27:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:27:11 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:27:13 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" IS NULL + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:27:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" IS NULL + Rendered tasklist/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:27:23 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" IS NULL + Rendered tasklist/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:27:26 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" IS NULL + Rendered tasklist/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:27:28 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" IS NULL + Rendered tasklist/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:27:44 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 21ms (Views: 18.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:27:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:27:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:27:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:27:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:27:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:27:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:27:44 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:27:46 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:27:50 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:27:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-19 15:27:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:27:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.3ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:27:55 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:27:58 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:28:53 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:28:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:28:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:28:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:28:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:28:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:28:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:28:53 -0700 + + +Started GET "/" for ::1 at 2016-04-19 15:28:55 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:28:56 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:30:56 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (8.2ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `description' for "The First Task":String): + 4:
                                + 5: <%@tasklist.each do |task|%> + 6:
                              • + 7: <%= link_to task.title, "#{task.title.description}"%> + 8:
                              • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131339766200' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131339766200' + app/controllers/tasklist_controller.rb:9:in `by_title' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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:31:01 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `description' for "The First Task":String): + 4:
                                  + 5: <%@tasklist.each do |task|%> + 6:
                                • + 7: <%= link_to task.title, "#{task.title.description}"%> + 8:
                                • + 9: + 10: <%end%> + app/views/tasklist/index.html.erb:7:in `block in _app_views_tasklist_index_html_erb__2600286461922152941_70131339766200' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__2600286461922152941_70131339766200' + app/controllers/tasklist_controller.rb:9:in `by_title' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:31:16 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:31:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:31:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:31:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:31:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:31:16 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:31:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:31:16 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:31:18 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:31:19 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:31:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:32:03 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:32:47 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:32:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:32:47 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:32:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:32:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:32:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:32:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:32:47 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:32:48 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.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-19 15:32:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:32:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:32:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:32:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:32:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-19 15:32:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:33:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:33:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:33:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:33:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:33:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:33:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:33:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:33:44 -0700 + + +Started GET "/" for ::1 at 2016-04-19 15:33:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:33:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-19 15:33:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:33:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/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-19 15:33:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:33:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:34:03 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:34:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:35:34 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:7: syntax error, unexpected ';', expecting &. or :: or '[' or '.' +...escription, task.completed_at ;@output_buffer.safe_append=' +... ^): + app/views/tasklist/index.html.erb:7: syntax error, unexpected ';', expecting &. or :: or '[' or '.' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.6ms) + + +Started GET "/" for ::1 at 2016-04-19 15:35:35 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:7: syntax error, unexpected ';', expecting &. or :: or '[' or '.' +...escription, task.completed_at ;@output_buffer.safe_append=' +... ^): + app/views/tasklist/index.html.erb:7: syntax error, unexpected ';', expecting &. or :: or '[' or '.' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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-19 15:36:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:36:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:36:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:36:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:36:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:36:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:36:13 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:36:13 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:36:18 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:36:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:36:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.3ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:36:23 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:37:21 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:37:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/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-19 15:37:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:37:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:37:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:37:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.3ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:37:42 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:37:43 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:37:44 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:37:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:37:51 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.9ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:37:51 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.7ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:37:55 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (53.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.4ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:37:55 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:37:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:37:59 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:38:04 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:38:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:38:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:38:10 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:38:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 15:38:15 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:38:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.2ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:38:18 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:38:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.2ms) + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:39:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:39:22 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:39:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:39:24 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.7ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:39:24 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) + Rendered /Users/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.4ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:39:35 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:39:36 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 15:39:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 15:39:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:39:53 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:39:56 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.1ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:39:56 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:40:21 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.2ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:40:21 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.8ms) + + +Started GET "/" for ::1 at 2016-04-19 15:40:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:40:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:40:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:40:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:40:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:40:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:40:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:40:53 -0700 + + +Started GET "/Nap." for ::1 at 2016-04-19 15:40:55 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (53.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.8ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:40:56 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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:41:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:41:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:41:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:41:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:41:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:41:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:41:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:41:01 -0700 + + +Started GET "/" for ::1 at 2016-04-19 15:41:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:41:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:41:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:41:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:41:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:41:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:41:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:41:02 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:41:03 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:41:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 15:41:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:41:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:41:08 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (53.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:41:08 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.5ms) +  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateRailsTaskLists (20160419202627) +  (0.1ms) begin transaction +  (0.5ms) CREATE TABLE "rails_task_lists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "completed_at" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  + SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419202627"]] +  (1.5ms) 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.7ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "The First Task"], ["description", ""], ["completed_at", "1998-06-12 01:41:22 -0700"], ["created_at", "2016-04-19 22:43:07.493173"], ["updated_at", "2016-04-19 22:43:07.493173"]] +  (8.9ms) commit transaction +  (0.2ms) begin transaction + SQL (0.7ms) INSERT INTO "rails_task_lists" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Go to Brunch"], ["description", ""], ["created_at", "2016-04-19 22:43:07.507373"], ["updated_at", "2016-04-19 22:43:07.507373"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", ""], ["completed_at", "2008-01-14 22:55:44 -0800"], ["created_at", "2016-04-19 22:43:07.510446"], ["updated_at", "2016-04-19 22:43:07.510446"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-19 22:43:07.512582"], ["updated_at", "2016-04-19 22:43:07.512582"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", ""], ["completed_at", "2005-05-13 02:03:45 -0700"], ["created_at", "2016-04-19 22:43:07.514673"], ["updated_at", "2016-04-19 22:43:07.514673"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", ""], ["completed_at", "2004-12-02 17:15:29 -0800"], ["created_at", "2016-04-19 22:43:07.516742"], ["updated_at", "2016-04-19 22:43:07.516742"]] +  (0.6ms) commit transaction +  (0.2ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", ""], ["completed_at", "1970-10-13 13:47:48 -0700"], ["created_at", "2016-04-19 22:43:07.519239"], ["updated_at", "2016-04-19 22:43:07.519239"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Call Mom"], ["description", ""], ["created_at", "2016-04-19 22:43:07.521325"], ["updated_at", "2016-04-19 22:43:07.521325"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "She worries, you know"], ["description", ""], ["created_at", "2016-04-19 22:43:07.523413"], ["updated_at", "2016-04-19 22:43:07.523413"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Nap"], ["description", ""], ["completed_at", "2004-04-03 10:26:58 -0800"], ["created_at", "2016-04-19 22:43:07.525514"], ["updated_at", "2016-04-19 22:43:07.525514"]] +  (0.5ms) commit transaction + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:43:11 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.7ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:43:12 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:43:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 26ms (Views: 23.5ms | ActiveRecord: 0.7ms) + + +Started GET "/Nap" for ::1 at 2016-04-19 15:43:19 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Nap"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 15:43:21 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:44:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:44:22 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:44:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:44:24 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:44:25 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.3ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:44:25 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:44:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 15:44:27 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:44:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:45:09 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:45:55 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:45:55 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:46:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:46:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:46:14 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/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 15:46:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:49:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 26ms (Views: 22.8ms | ActiveRecord: 1.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:49:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:49:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:49:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:49:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:49:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:49:10 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:49:10 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:49:12 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.4ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:49:13 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (48.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:49:19 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.6ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:49:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started GET "/Nap" for ::1 at 2016-04-19 15:49:29 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (44.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.8ms) + + +Started GET "/Nap" for ::1 at 2016-04-19 15:49:29 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.7ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:49:34 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.6ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:49:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:50:27 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.4ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views" +): + app/controllers/tasklist_controller.rb:9:in `by_title' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.6ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:50:32 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views" +): + app/controllers/tasklist_controller.rb:9:in `by_title' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (46.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (79.8ms) + + +Started GET "/" for ::1 at 2016-04-19 15:50:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-19 15:50:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:50:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views" +): + app/controllers/tasklist_controller.rb:9:in `by_title' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (45.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.6ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:50:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views" +): + app/controllers/tasklist_controller.rb:9:in `by_title' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (52.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.4ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:50:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views" +): + app/controllers/tasklist_controller.rb:9:in `by_title' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (45.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.7ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:50:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +ActionView::MissingTemplate (Missing template tasklist/by_title, application/by_title with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views" +): + app/controllers/tasklist_controller.rb:9:in `by_title' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (47.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.6ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:52:43 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (3.8ms) +Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:52:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:52:43 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:52:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:52:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:52:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:52:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:52:43 -0700 + + +Started GET "/" for ::1 at 2016-04-19 15:52:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:52:46 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (2.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-19 15:52:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:52:47 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:52:48 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:52:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:52:50 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:52:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:52:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:52:52 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:52:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:52:55 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 15:52:56 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 15:52:58 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:52:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 15:53:00 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 15:53:02 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:53:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:53:04 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) +  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateRailsTaskLists (20160419202627) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "rails_task_lists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "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", "20160419202627"]] +  (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 (1.1ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "The First Task"], ["description", "Get up and dress"], ["completed_at", "1983-12-09 06:26:07 -0800"], ["created_at", "2016-04-19 22:54:55.980167"], ["updated_at", "2016-04-19 22:54:55.980167"]] +  (1.4ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Go to Brunch"], ["description", "With friends"], ["created_at", "2016-04-19 22:54:55.985636"], ["updated_at", "2016-04-19 22:54:55.985636"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", "With Family"], ["completed_at", "2002-04-15 10:43:12 -0700"], ["created_at", "2016-04-19 22:54:55.987835"], ["updated_at", "2016-04-19 22:54:55.987835"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", "With friends"], ["created_at", "2016-04-19 22:54:55.989823"], ["updated_at", "2016-04-19 22:54:55.989823"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", "with friends"], ["completed_at", "2011-01-02 21:04:39 -0800"], ["created_at", "2016-04-19 22:54:55.992063"], ["updated_at", "2016-04-19 22:54:55.992063"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", " Or not"], ["completed_at", "2003-06-16 09:55:04 -0700"], ["created_at", "2016-04-19 22:54:55.994703"], ["updated_at", "2016-04-19 22:54:55.994703"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", "In neighbors back yard"], ["completed_at", "2000-07-04 00:18:55 -0700"], ["created_at", "2016-04-19 22:54:55.997268"], ["updated_at", "2016-04-19 22:54:55.997268"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Call Mom"], ["description", "Or else"], ["created_at", "2016-04-19 22:54:56.000137"], ["updated_at", "2016-04-19 22:54:56.000137"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "She worries, you know"], ["description", "Or else"], ["created_at", "2016-04-19 22:54:56.002078"], ["updated_at", "2016-04-19 22:54:56.002078"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Nap"], ["description", "Yesss!"], ["completed_at", "1973-07-06 08:22:41 -0700"], ["created_at", "2016-04-19 22:54:56.004331"], ["updated_at", "2016-04-19 22:54:56.004331"]] +  (0.5ms) commit transaction + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:54:59 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (3.5ms) +Completed 200 OK in 22ms (Views: 18.7ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:54:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:54:59 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:54:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:54:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:54:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:54:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:54:59 -0700 + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:55:00 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:55:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:55:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:55:00 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:55:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:55:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:55:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:55:00 -0700 + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:55:03 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:55:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:55:05 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:55:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:55:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:55:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 15:55:11 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:55:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 15:55:14 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:55:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/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-19 15:55:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:55:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:55:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:55:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:55:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:55:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:55:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:55:44 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:55:46 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:55:48 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:55:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:55:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:55:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:55:52 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:55:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:55:53 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:56:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:56:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:56:52 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:56:58 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:56:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 15:57:01 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 15:57:04 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:57:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/Nap" for ::1 at 2016-04-19 15:57:07 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Nap"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Nap" for ::1 at 2016-04-19 15:57:09 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Nap"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) +  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) 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 CreateRailsTaskLists (20160419202627) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "rails_task_lists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "completed_at" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419202627"]] +  (0.5ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateRailsTaskLists (20160419202627) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "rails_task_lists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "completion_status" varchar, "completed_at" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419202627"]] +  (0.8ms) 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.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "The First Task"], ["description", "Get up and dress"], ["completion_status", "almost done"], ["completed_at", "1997-03-03 00:46:04 -0800"], ["created_at", "2016-04-19 23:25:04.350831"], ["updated_at", "2016-04-19 23:25:04.350831"]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Brunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-19 23:25:04.355619"], ["updated_at", "2016-04-19 23:25:04.355619"]] +  (0.9ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", "With Family"], ["completion_status", "almost done"], ["completed_at", "1987-06-20 00:16:29 -0700"], ["created_at", "2016-04-19 23:25:04.358519"], ["updated_at", "2016-04-19 23:25:04.358519"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-19 23:25:04.360762"], ["updated_at", "2016-04-19 23:25:04.360762"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", "with friends"], ["completion_status", "almost done"], ["completed_at", "1983-07-22 06:25:27 -0700"], ["created_at", "2016-04-19 23:25:04.363363"], ["updated_at", "2016-04-19 23:25:04.363363"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", " Or not"], ["completion_status", "almost done"], ["completed_at", "1994-03-15 16:15:36 -0800"], ["created_at", "2016-04-19 23:25:04.366188"], ["updated_at", "2016-04-19 23:25:04.366188"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", "In neighbors back yard"], ["completed_at", "1979-08-27 12:15:59 -0700"], ["created_at", "2016-04-19 23:25:04.368844"], ["updated_at", "2016-04-19 23:25:04.368844"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Call Mom"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-19 23:25:04.371384"], ["updated_at", "2016-04-19 23:25:04.371384"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "She worries, you know"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-19 23:25:04.373598"], ["updated_at", "2016-04-19 23:25:04.373598"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Nap"], ["description", "Yesss!"], ["completion_status", "almost done"], ["completed_at", "1982-02-06 07:03:30 -0800"], ["created_at", "2016-04-19 23:25:04.375715"], ["updated_at", "2016-04-19 23:25:04.375715"]] +  (0.5ms) commit transaction + + +Started GET "/Nap" for ::1 at 2016-04-19 16:25:12 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Nap"]] + Rendered tasklist/by_title.erb within layouts/application (3.9ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:25:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:25:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:25:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:25:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:25:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:25:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:25:12 -0700 + + +Started GET "/" for ::1 at 2016-04-19 16:25:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:25:15 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:25:59 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:25:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:25:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:25:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:25:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:25:59 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:25:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:25:59 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:29:13 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:29:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:29:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:29:13 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:29:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:29:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:29:13 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:29:14 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:29:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:29:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:29:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:29:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:29:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:29:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:29:14 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:29:30 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:29:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 16:29:32 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 16:29:40 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:29:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 16:29:42 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:29:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:29:44 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:30:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 16:30:42 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.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:30:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 16:30:48 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:30:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:30:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:30:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.4ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:31:30 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:41:15 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:41:17 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 16:43:33 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:43:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 16:43:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.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 16:43:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 16:47:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:47:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:47:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:47:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:47:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:47:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:47:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:47:02 -0700 + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 16:47:04 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 16:47:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.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-19 16:47:12 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 16:47:15 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:51:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.3ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 16:51:32 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 17:00:14 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 17:00:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 17:00:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 17:00:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 17:00:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 17:00:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 17:00:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 17:00:14 -0700 + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 17:00:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 17:00:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 17:00:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 17:00:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 17:00:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 17:00:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 17:00:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 17:00:20 -0700 + + +Started GET "/" for ::1 at 2016-04-19 17:00:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 17:00:59 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 17:01:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 30ms (Views: 28.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 17:01:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 17:01:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.4ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 17:01:15 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 17:02:42 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 17:02:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 17:02:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 17:02:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 17:02:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 17:02:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 17:02:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 17:02:42 -0700 + + +Started GET "/" for ::1 at 2016-04-19 17:02:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.3ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 17:02:47 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 17:06:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 17:06:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.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 17:06:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 17:06:12 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 17:07:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 17:07:15 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 17:07:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 17:07:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 17:07:26 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 20:08:22 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (14.6ms) +Completed 200 OK in 68ms (Views: 58.3ms | ActiveRecord: 0.7ms) + + +Started POST "/Call%20Mom" for ::1 at 2016-04-19 20:08:26 -0700 + +ActionController::RoutingError (No route matches [POST] "/Call%20Mom"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/sakne/.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.8ms) + Rendered /Users/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (53.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (114.5ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 20:08:28 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (4.3ms) +Completed 200 OK in 28ms (Views: 25.9ms | ActiveRecord: 0.5ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 20:09:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 20:09:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 20:09:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 20:09:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 20:09:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 20:09:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 20:09:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 20:09:06 -0700 + + +Started POST "/Call%20Mom" for ::1 at 2016-04-19 20:09:12 -0700 + +ActionController::RoutingError (No route matches [POST] "/Call%20Mom"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.5ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 20:09:13 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (3.4ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 20:09:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 20:09:28 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started POST "/The%20First%20Task" for ::1 at 2016-04-19 20:09:34 -0700 + +ActionController::RoutingError (No route matches [POST] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.5ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 20:09:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 20:09:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 20:09:38 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started POST "/The%20First%20Task" for ::1 at 2016-04-19 20:10:15 -0700 + +ActionController::RoutingError (No route matches [POST] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (89.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.9ms) + + +Started POST "/The%20First%20Task" for ::1 at 2016-04-19 21:04:36 -0700 + +ActionController::RoutingError (No route matches [POST] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) + Rendered /Users/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.0ms) + + +Started POST "/The%20First%20Task" for ::1 at 2016-04-19 21:04:39 -0700 + +ActionController::RoutingError (No route matches [POST] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:04:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:04:44 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:06:11 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (4.1ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:06:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:06:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:06:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:06:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:06:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:06:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:06:11 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:06:45 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:06:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:06:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:06:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:06:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:06:45 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:06:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:06:45 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:06:46 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:06:46 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:06:46 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:07:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:07:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:07:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:07:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:07:08 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:07:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:07:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:07:08 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:07:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:07:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:07:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:07:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:07:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:07:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:07:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:07:36 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:08:13 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:08:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:08:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:08:13 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:08:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:08:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:08:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:08:13 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:08:48 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:08:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:08:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:08:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:08:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:08:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:08:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:08:48 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:08:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:08:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:08:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:08:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:08:49 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:08:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:08:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:08:49 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:09:02 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:09:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:09:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:09:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:09:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:09:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:09:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:09:02 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:09:03 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:09:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:09:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:09:03 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:09:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:09:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:09:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:09:03 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 21:09:32 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:09:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:09:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:09:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:09:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:09:33 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:09:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:09:33 -0700 + + +Started GET "/" for ::1 at 2016-04-19 21:09:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:09:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:10:44 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:10:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:10:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:10:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:10:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:10:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:10:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:10:44 -0700 + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:11:15 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:11:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:11:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:11:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:11:15 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:11:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:11:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:11:15 -0700 + + +Started GET "/" for ::1 at 2016-04-19 21:12:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/Nap" for ::1 at 2016-04-19 21:12:30 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Nap"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:12:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:12:32 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:12:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 21:12:38 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 21:13:56 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:13:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:13:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:13:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:13:56 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:13:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:13:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:13:56 -0700 +  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) 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 CreateRailsTaskLists (20160419202627) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "rails_task_lists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "completion_status" varchar, "completed_at" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419202627"]] +  (0.5ms) 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 (1.0ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "The First Task"], ["description", "Get up and dress"], ["completion_status", "[\"almost done\", \"finished\"]"], ["completed_at", "1971-08-08 11:41:02 -0700"], ["created_at", "2016-04-20 04:16:19.485651"], ["updated_at", "2016-04-20 04:16:19.485651"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Brunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-20 04:16:19.490033"], ["updated_at", "2016-04-20 04:16:19.490033"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", "With Family"], ["completion_status", "almost done"], ["completed_at", "1977-09-13 22:35:16 -0700"], ["created_at", "2016-04-20 04:16:19.492100"], ["updated_at", "2016-04-20 04:16:19.492100"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-20 04:16:19.494127"], ["updated_at", "2016-04-20 04:16:19.494127"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", "with friends"], ["completion_status", "almost done"], ["completed_at", "2014-05-21 06:04:40 -0700"], ["created_at", "2016-04-20 04:16:19.496146"], ["updated_at", "2016-04-20 04:16:19.496146"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", " Or not"], ["completion_status", "almost done"], ["completed_at", "2014-11-11 16:34:58 -0800"], ["created_at", "2016-04-20 04:16:19.498312"], ["updated_at", "2016-04-20 04:16:19.498312"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", "In neighbors back yard"], ["completed_at", "2001-01-19 12:08:07 -0800"], ["created_at", "2016-04-20 04:16:19.500881"], ["updated_at", "2016-04-20 04:16:19.500881"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Call Mom"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-20 04:16:19.502981"], ["updated_at", "2016-04-20 04:16:19.502981"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "She worries, you know"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-20 04:16:19.505028"], ["updated_at", "2016-04-20 04:16:19.505028"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Nap"], ["description", "Yesss!"], ["completion_status", "almost done"], ["completed_at", "1983-02-10 06:53:19 -0800"], ["created_at", "2016-04-20 04:16:19.507126"], ["updated_at", "2016-04-20 04:16:19.507126"]] +  (0.5ms) commit transaction + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 21:17:09 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (8.1ms) +Completed 200 OK in 216ms (Views: 201.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:17:09 -0700 + + +Started GET "/" for ::1 at 2016-04-19 21:17:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:17:13 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.7ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:18:04 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:18:04 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:18:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:18:04 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:18:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:18:04 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:18:04 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:18:04 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:18:05 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:18:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:18:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:18:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:18:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:18:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:18:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:18:05 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:18:19 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:18:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:18:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:18:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:18:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:18:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:18:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:18:19 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:18:34 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:18:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:18:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:18:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 21:18:42 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 21:18:45 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:18:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 21:19:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:19:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:19:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:19:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:19:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:19:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:19:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:19:29 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:19:31 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:19:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.4ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:19:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:19:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:19:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:19:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:19:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:19:51 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:19:51 -0700 + + +Started GET "/" for ::1 at 2016-04-19 21:20:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 21:20:22 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (1.4ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:20:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 21:20:25 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:20:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:20:27 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:20:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:20:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:21:01 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:21:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:21:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:21:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:21:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:21:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:21:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:21:01 -0700 + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:21:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:21:07 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.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 21:21:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:21:09 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:22:55 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-19 21:22:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 21:22:57 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:23:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:23:01 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:23:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 21:23:05 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:23:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:23:52 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.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 21:23:55 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 21:23:57 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:23:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.1ms) +  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateRailsTaskLists (20160419202627) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "rails_task_lists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "completion_status" varchar, "completed_at" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419202627"]] +  (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 "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "The First Task"], ["description", "Get up and dress"], ["completion_status", "almost done"], ["completed_at", "1978-03-31 03:43:10 -0800"], ["created_at", "2016-04-20 04:24:59.333973"], ["updated_at", "2016-04-20 04:24:59.333973"]] +  (1.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Brunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-20 04:24:59.339192"], ["updated_at", "2016-04-20 04:24:59.339192"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", "With Family"], ["completion_status", "almost done"], ["completed_at", "1982-06-18 14:53:43 -0700"], ["created_at", "2016-04-20 04:24:59.341767"], ["updated_at", "2016-04-20 04:24:59.341767"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-20 04:24:59.344121"], ["updated_at", "2016-04-20 04:24:59.344121"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", "with friends"], ["completion_status", "almost done"], ["completed_at", "1988-04-07 13:20:57 -0700"], ["created_at", "2016-04-20 04:24:59.346495"], ["updated_at", "2016-04-20 04:24:59.346495"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", " Or not"], ["completion_status", "almost done"], ["completed_at", "2010-07-01 02:16:17 -0700"], ["created_at", "2016-04-20 04:24:59.349044"], ["updated_at", "2016-04-20 04:24:59.349044"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", "In neighbors back yard"], ["completed_at", "1973-03-13 21:01:05 -0800"], ["created_at", "2016-04-20 04:24:59.351128"], ["updated_at", "2016-04-20 04:24:59.351128"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Call Mom"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-20 04:24:59.353296"], ["updated_at", "2016-04-20 04:24:59.353296"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "She worries, you know"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-20 04:24:59.355342"], ["updated_at", "2016-04-20 04:24:59.355342"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Nap"], ["description", "Yesss!"], ["completion_status", "almost done"], ["completed_at", "1997-01-18 11:50:41 -0800"], ["created_at", "2016-04-20 04:24:59.357421"], ["updated_at", "2016-04-20 04:24:59.357421"]] +  (0.5ms) commit transaction + + +Started GET "/" for ::1 at 2016-04-19 21:25:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 21:25:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 21:25:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 21:25:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 21:25:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 21:25:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 21:25:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 21:25:02 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:25:04 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:25:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 21:25:09 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 21:25:12 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:25:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 21:25:14 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:25:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:25:57 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:26:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-19 21:26:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:26:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 21:26:12 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:26:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:26:17 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:27:04 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:45:29 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:45:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.3ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 21:45:31 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:45:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.6ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 21:45:39 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:45:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.3ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 21:45:42 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:45:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 21:45:44 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 21:45:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 21:45:46 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 08:30:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (12.5ms) +Completed 200 OK in 71ms (Views: 60.1ms | ActiveRecord: 1.4ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 08:30:05 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.7ms) +Completed 200 OK in 30ms (Views: 27.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 08:30:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.6ms) +Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-20 08:33:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 08:34:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:34:43 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-20 08:34:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:34:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:34:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:34:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:34:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:34:43 -0700 + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:35:17 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (8.7ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:37:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (2.6ms) +Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:37:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:37:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:37:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:37:54 -0700 + + +Started GET "/assets/application.self-505c5114fe33a4238f6f43ea8a2b628f362eff9525da6f77641e9308d1a787f4.css?body=1" for ::1 at 2016-04-20 08:37:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:37:54 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:37:54 -0700 + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:38:24 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:38:24 -0700 + + +Started GET "/assets/application.self-873681c23e490fcc03f3728d7bc7c63811ad81120ae9bd1f03e90218761d06c7.css?body=1" for ::1 at 2016-04-20 08:38:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:38:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:38:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:38:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:38:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:38:24 -0700 + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:39:39 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:39:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:39:39 -0700 + + +Started GET "/assets/application.self-873681c23e490fcc03f3728d7bc7c63811ad81120ae9bd1f03e90218761d06c7.css?body=1" for ::1 at 2016-04-20 08:39:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:39:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:39:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:39:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:39:39 -0700 + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:40:32 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:40:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:40:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:40:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:40:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:40:32 -0700 + + +Started GET "/assets/application.self-873681c23e490fcc03f3728d7bc7c63811ad81120ae9bd1f03e90218761d06c7.css?body=1" for ::1 at 2016-04-20 08:40:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:40:32 -0700 + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:41:05 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:41:46 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:41:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:41:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:41:46 -0700 + + +Started GET "/assets/application.self-3d01a8fd6c117686082446a72fdf75800e388c9e0a119caf995843d2e8f5d949.css?body=1" for ::1 at 2016-04-20 08:41:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:41:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:41:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:41:46 -0700 + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:41:47 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:41:47 -0700 + + +Started GET "/assets/application.self-3d01a8fd6c117686082446a72fdf75800e388c9e0a119caf995843d2e8f5d949.css?body=1" for ::1 at 2016-04-20 08:41:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:41:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:41:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:41:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:41:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:41:47 -0700 + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:42:14 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:42:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:42:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:42:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:42:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:42:14 -0700 + + +Started GET "/assets/application.self-3d01a8fd6c117686082446a72fdf75800e388c9e0a119caf995843d2e8f5d949.css?body=1" for ::1 at 2016-04-20 08:42:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:42:14 -0700 + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:43:41 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:43:41 -0700 + + +Started GET "/assets/application.self-9967685ce0dca5524a8ec1150d5b67489a0b13c0e03ec37123db41e20a9de090.css?body=1" for ::1 at 2016-04-20 08:43:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:43:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:43:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:43:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:43:41 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:43:41 -0700 + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 08:43:48 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 08:43:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 08:43:50 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 08:43:54 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 08:43:55 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 08:43:57 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 08:43:58 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 08:44:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 08:44:05 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 08:44:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/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-20 08:46:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:46:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:46:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:46:18 -0700 + + +Started GET "/assets/application.self-cd21032d2286f0885a0a113e989b7eb4bd7da4f3b151e4a465586f55094f4827.css?body=1" for ::1 at 2016-04-20 08:46:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:46:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:46:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:46:18 -0700 + + +Started GET "/images/travel.jpg" for ::1 at 2016-04-20 08:46:18 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/travel.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.4ms) + Rendered /Users/sakne/.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/sakne/.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 (88.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (54.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.9ms) + + +Started GET "/" for ::1 at 2016-04-20 08:46:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/application.self-cd21032d2286f0885a0a113e989b7eb4bd7da4f3b151e4a465586f55094f4827.css?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/images/travel.jpg" for ::1 at 2016-04-20 08:46:20 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/travel.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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-20 08:46:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/assets/application.self-cd21032d2286f0885a0a113e989b7eb4bd7da4f3b151e4a465586f55094f4827.css?body=1" for ::1 at 2016-04-20 08:46:20 -0700 + + +Started GET "/images/travel.jpg" for ::1 at 2016-04-20 08:46:20 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/travel.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 08:46:28 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 08:47:34 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:47:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:47:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:47:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:47:34 -0700 + + +Started GET "/assets/application.self-cd21032d2286f0885a0a113e989b7eb4bd7da4f3b151e4a465586f55094f4827.css?body=1" for ::1 at 2016-04-20 08:47:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:47:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:47:34 -0700 + + +Started GET "/images/travel.jpg" for ::1 at 2016-04-20 08:47:34 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/travel.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.6ms) + + +Started GET "/" for ::1 at 2016-04-20 08:47:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 08:47:53 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 08:48:52 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:48:52 -0700 + + +Started GET "/assets/application.self-cd21032d2286f0885a0a113e989b7eb4bd7da4f3b151e4a465586f55094f4827.css?body=1" for ::1 at 2016-04-20 08:48:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:48:52 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:48:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:48:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:48:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:48:52 -0700 + + +Started GET "/images/travel.jpg" for ::1 at 2016-04-20 08:48:52 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/travel.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.5ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 08:50:40 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:50:40 -0700 + + +Started GET "/assets/application.self-cd21032d2286f0885a0a113e989b7eb4bd7da4f3b151e4a465586f55094f4827.css?body=1" for ::1 at 2016-04-20 08:50:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:50:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:50:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:50:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:50:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:50:40 -0700 + + +Started GET "/images/travel.jpg" for ::1 at 2016-04-20 08:50:40 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/travel.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 08:50:41 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 08:50:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 08:50:41 -0700 + + +Started GET "/assets/application.self-cd21032d2286f0885a0a113e989b7eb4bd7da4f3b151e4a465586f55094f4827.css?body=1" for ::1 at 2016-04-20 08:50:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 08:50:41 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 08:50:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 08:50:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 08:50:41 -0700 + + +Started GET "/images/travel.jpg" for ::1 at 2016-04-20 08:50:41 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/travel.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/sakne/.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 (63.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.6ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 08:50:44 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:02:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 09:02:13 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:02:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 09:02:16 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:02:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 09:02:19 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 09:06:14 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 09:06:17 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:06:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.4ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 09:06:22 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:06:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.4ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 09:06:25 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:06:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 09:06:29 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:06:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:06:34 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:06:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 09:06:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:06:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Nap" for ::1 at 2016-04-20 09:06:39 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Nap"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:06:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 09:06:45 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 09:07:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 22ms (Views: 19.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:07:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 09:07:12 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:07:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:07:24 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:07:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 09:07:27 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:07:54 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-20 09:07:56 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:08:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.3ms) + + +Started GET "/Nap" for ::1 at 2016-04-20 09:08:02 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Nap"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:08:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 09:08:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 09:08:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:08:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:08:35 -0700 + + +Started GET "/assets/application.self-b183c154ea372e75ed537a92adbc59a9c40bdc2d67d28f42357398f0ceb0d151.css?body=1" for ::1 at 2016-04-20 09:08:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:08:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:08:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:08:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:08:36 -0700 + + +Started GET "/assets/assets/travel.jpg" for ::1 at 2016-04-20 09:08:36 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/assets/travel.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.3ms) + + +Started GET "/" for ::1 at 2016-04-20 09:08:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 09:08:47 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:08:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 09:08:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:08:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 09:08:57 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:09:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:09:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-c68b84b3dd33fb25c1c0f6972f55fc8d3d5a69c982e86d9ca0334fabae83591d.css?body=1" for ::1 at 2016-04-20 09:09:39 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 09:09:40 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:09:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 09:09:43 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.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 09:09:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.6ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 09:09:46 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:09:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.5ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 09:09:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:09:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:09:57 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:10:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.8ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:10:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:10:51 -0700 + + +Started GET "/assets/application.self-14ab2dd659e710b8b26d5d63724dc67efc5c7302c43cae13a006ca124e064e09.css?body=1" for ::1 at 2016-04-20 09:10:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:10:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:10:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:10:51 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:10:51 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:11:03 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:11:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:11:03 -0700 + + +Started GET "/assets/application.self-0062d153bf830fbff65a51a1665a7f858939927efb21b46b5d333730b40a3f2c.css?body=1" for ::1 at 2016-04-20 09:11:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:11:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:11:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:11:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:11:03 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:11:14 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:11:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:11:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:11:14 -0700 + + +Started GET "/assets/application.self-91c448ab62476b068a9e9b6de9793b2f93624719fae2d2df68cebb1b933ea15a.css?body=1" for ::1 at 2016-04-20 09:11:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:11:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:11:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:11:14 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:11:21 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:11:21 -0700 + + +Started GET "/assets/application.self-e341d9bea38640ee1ad0d6a2f67f53b7068acf946581e3d5ffde5570e55502d9.css?body=1" for ::1 at 2016-04-20 09:11:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:11:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:11:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:11:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:11:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:11:21 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:12:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:12:35 -0700 + + +Started GET "/assets/application.self-2b43079cdf88d7e1c44da35555c40b0506986d696d5d35dd726ad97525e0c06e.css?body=1" for ::1 at 2016-04-20 09:12:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:12:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:12:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:12:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:12:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:12:35 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:12:48 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:12:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:12:48 -0700 + + +Started GET "/assets/application.self-fdf6b8da74100014a3ce1b08779d90c853001a4fb74cc622e92e72f99d509bc3.css?body=1" for ::1 at 2016-04-20 09:12:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:12:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:12:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:12:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:12:48 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:12:56 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:12:56 -0700 + + +Started GET "/assets/application.self-3069f4f4ab97002307e32916c87b16ecacb3fbbae617599ec02464993122bdd8.css?body=1" for ::1 at 2016-04-20 09:12:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:12:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:12:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:12:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:12:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:12:56 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:13:03 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:13:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:13:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:13:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:13:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:13:03 -0700 + + +Started GET "/assets/application.self-fdf6b8da74100014a3ce1b08779d90c853001a4fb74cc622e92e72f99d509bc3.css?body=1" for ::1 at 2016-04-20 09:13:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:13:03 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:13:19 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:13:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:13:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:13:19 -0700 + + +Started GET "/assets/application.self-c5136f1e8f2daeb9424412cb1574bfb93b825b37a8120718d979a6bf2dda67c5.css?body=1" for ::1 at 2016-04-20 09:13:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:13:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:13:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:13:19 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:13:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:13:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:13:35 -0700 + + +Started GET "/assets/application.self-0aa110d7e38930e7c7b4b61ec5f063410fa64a6ceb50e02f725bd5cc69a141ce.css?body=1" for ::1 at 2016-04-20 09:13:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:13:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:13:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:13:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:13:35 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:13:47 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:13:47 -0700 + + +Started GET "/assets/application.self-c355ed6c2f1164e44d6d34c9554f990b8b63b11348f4be7445c744bb6bd5a8a3.css?body=1" for ::1 at 2016-04-20 09:13:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:13:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:13:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:13:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:13:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:13:47 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:13:59 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:13:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:13:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:13:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:13:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:13:59 -0700 + + +Started GET "/assets/application.self-2b32c186ec67a4bea3dc9e02d4006332cc99b61f2dd31cedecbd681099fcc9c5.css?body=1" for ::1 at 2016-04-20 09:13:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:13:59 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:14:11 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:14:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:14:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:14:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:14:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:14:11 -0700 + + +Started GET "/assets/application.self-a46da4264b8a6d4a5e8d8835b95bd45f1b63b220f2af2d59ed317f1fdb9a4f12.css?body=1" for ::1 at 2016-04-20 09:14:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:14:11 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:14:43 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:14:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:14:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:14:43 -0700 + + +Started GET "/assets/application.self-dd669f46d6399d9e003ddbc2f55a8c125a26ef99b9103da102825a3d8ac39aac.css?body=1" for ::1 at 2016-04-20 09:14:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:14:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:14:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:14:43 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:15:02 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:15:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:15:02 -0700 + + +Started GET "/assets/application.self-79353aa909b7f2621a757a17e2f59e85c2e48171ecbebd7d0d0271d6a51d604c.css?body=1" for ::1 at 2016-04-20 09:15:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:15:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:15:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:15:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:15:02 -0700 + + +Started GET "/" for ::1 at 2016-04-20 09:15:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 09:15:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-dc1138b674ae376b799081a3eeb31183eee04cf8594dd95ecfb36acc173e4b8e.css?body=1" for ::1 at 2016-04-20 09:15:59 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-20 09:16:00 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:21:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:21:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:21:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:21:22 -0700 + + +Started GET "/assets/application.self-dc1138b674ae376b799081a3eeb31183eee04cf8594dd95ecfb36acc173e4b8e.css?body=1" for ::1 at 2016-04-20 09:21:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:21:22 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:21:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:21:22 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 09:21:24 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-20 09:30:28 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:30:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:30:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:30:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:30:28 -0700 + + +Started GET "/assets/application.self-e0c9b1d3666245749406d6f6bbb22ff3916de58c20972526beed4e7e048a0d97.css?body=1" for ::1 at 2016-04-20 09:30:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:30:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:30:28 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-20 09:30:29 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:30:29 -0700 + + +Started GET "/assets/application.self-e0c9b1d3666245749406d6f6bbb22ff3916de58c20972526beed4e7e048a0d97.css?body=1" for ::1 at 2016-04-20 09:30:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:30:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:30:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:30:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:30:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:30:29 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-20 09:31:30 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.7ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:31:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:31:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:31:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:31:30 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:31:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:31:30 -0700 + + +Started GET "/assets/application.self-3da62cf5789fe30d4527f96ca2b513da7f7510324a4ecbe40577ffcd238dd425.css?body=1" for ::1 at 2016-04-20 09:31:30 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-20 09:32:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 09:32:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 09:32:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 09:32:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 09:32:06 -0700 + + +Started GET "/assets/application.self-2cc5163213f363c23cfba1c60530f8ac1de45f3ead8cfc08a32a118852615149.css?body=1" for ::1 at 2016-04-20 09:32:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 09:32:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 09:32:06 -0700 + + +Started GET "/" for ::1 at 2016-04-20 09:32:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 09:32:46 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 09:32:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 13:12:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 13:12:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 13:12:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 13:12:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 13:12:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 13:12:09 -0700 + + +Started GET "/assets/application.self-2cc5163213f363c23cfba1c60530f8ac1de45f3ead8cfc08a32a118852615149.css?body=1" for ::1 at 2016-04-20 13:12:09 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 13:12:09 -0700 + + +Started GET "/" for ::1 at 2016-04-20 13:12:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 13:12:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.3ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 13:12:17 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:13:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.5ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 13:13:47 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 13:13:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 13:13:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 13:13:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 13:13:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.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 13:13:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 13:15:41 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 13:15:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (1.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 1.3ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 13:15:58 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:10:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 38ms (Views: 36.9ms | ActiveRecord: 0.6ms) + + +Started GET "/index" for ::1 at 2016-04-20 14:11:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"index"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "index"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-20 14:11:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.4ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 14:11:42 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-20 14:11:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 14:11:45 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:11:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.3ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:11:53 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:13:42 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:13:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:13:42 -0700 + + +Started GET "/assets/application.self-2cc5163213f363c23cfba1c60530f8ac1de45f3ead8cfc08a32a118852615149.css?body=1" for ::1 at 2016-04-20 14:13:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:13:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:13:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:13:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:13:42 -0700 + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:13:43 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:13:43 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:13:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:13:43 -0700 + + +Started GET "/assets/application.self-2cc5163213f363c23cfba1c60530f8ac1de45f3ead8cfc08a32a118852615149.css?body=1" for ::1 at 2016-04-20 14:13:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:13:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:13:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:13:43 -0700 + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:15:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (2.5ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:15:08 -0700 + + +Started GET "/assets/application.self-2cc5163213f363c23cfba1c60530f8ac1de45f3ead8cfc08a32a118852615149.css?body=1" for ::1 at 2016-04-20 14:15:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:15:08 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:15:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:15:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:15:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:15:08 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:15:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:15:12 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (2.9ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 14:15:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.4ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 14:15:17 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:15:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 14:15:21 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 14:15:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 14:15:24 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:15:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:15:30 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:16:58 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:16:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:16:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:16:58 -0700 + + +Started GET "/assets/application.self-e1e02f296ea0089a2660cca73fb030cd66f5d64b855539b816286c1b67b28693.css?body=1" for ::1 at 2016-04-20 14:16:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:16:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:16:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:16:58 -0700 + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 14:17:00 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:17:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:17:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:17:00 -0700 + + +Started GET "/assets/application.self-e1e02f296ea0089a2660cca73fb030cd66f5d64b855539b816286c1b67b28693.css?body=1" for ::1 at 2016-04-20 14:17:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:17:00 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:17:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:17:00 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:17:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.4ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-20 14:17:09 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:17:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:17:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:17:36 -0700 + + +Started GET "/assets/application.self-2cc5163213f363c23cfba1c60530f8ac1de45f3ead8cfc08a32a118852615149.css?body=1" for ::1 at 2016-04-20 14:17:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:17:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:17:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:17:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:17:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:17:37 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 14:17:38 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 14:18:56 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:18:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:18:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:18:57 -0700 + + +Started GET "/assets/application.self-e1e02f296ea0089a2660cca73fb030cd66f5d64b855539b816286c1b67b28693.css?body=1" for ::1 at 2016-04-20 14:18:57 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:18:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:18:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:18:57 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:18:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.9ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for nil:NilClass): + 18: + 19: + 20: <% iteration_count = 0 %> + 21: <% @taskslist.each do |task| %> + 22: <% iteration_count += 1%> + 23: <% if iteration_count % 2 == 0 %> + 24:
                                • + app/views/tasklist/index.html.erb:21:in `_app_views_tasklist_index_html_erb___3024998689859750179_70285313887220' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (55.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.9ms) + + +Started GET "/" for ::1 at 2016-04-20 14:18:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `each' for nil:NilClass): + 18: + 19: + 20: <% iteration_count = 0 %> + 21: <% @taskslist.each do |task| %> + 22: <% iteration_count += 1%> + 23: <% if iteration_count % 2 == 0 %> + 24:
                                • + app/views/tasklist/index.html.erb:21:in `_app_views_tasklist_index_html_erb___3024998689859750179_70285299263940' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.0ms) + + +Started GET "/" for ::1 at 2016-04-20 14:19:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:19:32 -0700 + + +Started GET "/assets/application.self-e1e02f296ea0089a2660cca73fb030cd66f5d64b855539b816286c1b67b28693.css?body=1" for ::1 at 2016-04-20 14:19:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:19:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:19:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:19:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:19:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:19:32 -0700 + + +Started GET "/2" for ::1 at 2016-04-20 14:20:18 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-20 14:20:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/4" for ::1 at 2016-04-20 14:20:22 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "4"]] + Rendered tasklist/by_title.erb within layouts/application (0.5ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:20:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.5ms) + + +Started GET "/6" for ::1 at 2016-04-20 14:20:26 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "6"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/10" for ::1 at 2016-04-20 14:20:38 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"10"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "10"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/4" for ::1 at 2016-04-20 14:21:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "4"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/8" for ::1 at 2016-04-20 14:32:32 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"8"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "8"]] + Rendered tasklist/by_title.erb within layouts/application (3.4ms) +Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.3ms) + + +Started GET "/4" for ::1 at 2016-04-20 14:32:34 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "4"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:32:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:32:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:32:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:32:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:32:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:32:47 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 14:32:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:32:47 -0700 + + +Started GET "/2" for ::1 at 2016-04-20 14:32:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/4" for ::1 at 2016-04-20 14:34:53 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"4"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "4"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.3ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:35:01 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:35:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:36:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 20ms (Views: 17.0ms | ActiveRecord: 0.7ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:37:24 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:37:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:37:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:37:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:37:24 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 14:37:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:37:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:37:24 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:37:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.3ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:37:30 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:37:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/4" for ::1 at 2016-04-20 14:37:34 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "4"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 29ms (Views: 27.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:37:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 14:38:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (32.4ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007fd9296f47f8> +Did you mean? @tasklist): + 25: <%= task.id %>. <%= task.title.capitalize %>
                                  + 26: <%= task.description %>
                                  + 27: Completed On: <%= task.completed_at %> + 28: <%= link_to "Show detail view", "/#{tasklist.id}" %> + 29:
                                • + 30: <% else %> + 31:
                                • + app/views/tasklist/index.html.erb:28:in `block in _app_views_tasklist_index_html_erb___3024998689859750179_70285339883660' + app/views/tasklist/index.html.erb:21:in `_app_views_tasklist_index_html_erb___3024998689859750179_70285339883660' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:41:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:41:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:41:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:41:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:41:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:41:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:41:42 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 14:41:42 -0700 + + +Started GET "/2" for ::1 at 2016-04-20 14:41:44 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:41:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/4" for ::1 at 2016-04-20 14:41:48 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "4"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:41:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.3ms) + + +Started GET "/8" for ::1 at 2016-04-20 14:41:52 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "8"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:41:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.6ms) + + +Started GET "/10" for ::1 at 2016-04-20 14:41:55 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"10"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "10"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:41:59 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.3ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:43:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started GET "/4" for ::1 at 2016-04-20 14:43:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "4"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:45:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:45:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:45:19 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 14:45:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:45:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:45:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:45:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:45:19 -0700 + + +Started GET "/4" for ::1 at 2016-04-20 14:45:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "4"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:46:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:46:22 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.5ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:46:29 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:46:29 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 14:46:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:46:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:46:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:46:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:46:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:46:29 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:46:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started GET "/10" for ::1 at 2016-04-20 14:46:33 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"10"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "10"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:46:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.5ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:46:41 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:47:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:47:50 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:50:19 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:50:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.2ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:50:33 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:51:30 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:51:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:51:30 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 14:51:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:51:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:51:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:51:30 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:51:30 -0700 + + +Started GET "/2" for ::1 at 2016-04-20 14:51:34 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 14:51:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 14:51:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 14:51:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 14:51:34 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 14:51:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 14:51:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 14:51:34 -0700 + + +Started GET "/" for ::1 at 2016-04-20 14:53:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 14:54:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:54:32 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:54:47 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 14:54:50 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 14:54:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 19:06:16 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (8.1ms) +Completed 200 OK in 84ms (Views: 75.4ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-20 19:06:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.2ms) + + +Started GET "/2" for ::1 at 2016-04-20 19:44:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 19:44:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.5ms) + + +Started GET "/2" for ::1 at 2016-04-20 19:46:18 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 19:47:13 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.8ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 19:47:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 19:47:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 19:47:13 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 19:47:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 19:47:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 19:47:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 19:47:13 -0700 + + +Started GET "/" for ::1 at 2016-04-20 19:47:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started GET "/2" for ::1 at 2016-04-20 19:47:50 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 19:48:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 19:48:39 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 19:48:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/2" for ::1 at 2016-04-20 19:53:11 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 19:53:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/2" for ::1 at 2016-04-20 19:53:17 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 19:55:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started GET "/2" for ::1 at 2016-04-20 19:55:43 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 19:59:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 28ms (Views: 24.9ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 19:59:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 19:59:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 19:59:11 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 19:59:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 19:59:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 19:59:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 19:59:11 -0700 + + +Started GET "/2" for ::1 at 2016-04-20 19:59:13 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-20 19:59:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/2" for ::1 at 2016-04-20 19:59:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:00:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-20 20:00:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:00:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:00:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:00:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:00:09 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:00:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:00:09 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:00:09 -0700 + + +Started GET "/2" for ::1 at 2016-04-20 20:00:11 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "2"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:00:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/6" for ::1 at 2016-04-20 20:00:17 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "6"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:01:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:01:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:01:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:01:38 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:01:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:01:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:01:38 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:01:38 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 20:01:43 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 20:01:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.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-20 20:01:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:02:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:02:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:02:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:02:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:02:16 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:02:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:02:16 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:02:16 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 20:02:19 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 20:02:25 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 20:05:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.6ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:05:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 20:05:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:05:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 20:06:22 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 20:06:47 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 20:06:51 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 20:06:52 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:06:57 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-20 20:07:09 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 20:08:28 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-20 20:08:34 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-20 20:08:37 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.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 20:24:50 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (10.1ms) +Completed 200 OK in 63ms (Views: 52.3ms | ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-20 20:27:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-20 20:27:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:27:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:27:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:27:06 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:27:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:27:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:27:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:27:06 -0700 + + +Started GET "/tasklist" for ::1 at 2016-04-20 20:27:09 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:27:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist" for ::1 at 2016-04-20 20:27:16 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:27:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-20 20:27:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist" for ::1 at 2016-04-20 20:27:22 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:27:54 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-20 20:27:57 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:27:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:27:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:27:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:27:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:27:57 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:27:57 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:27:57 -0700 + + +Started GET "/" for ::1 at 2016-04-20 20:27:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist.create" for ::1 at 2016-04-20 20:28:00 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (2.0ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:28:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 20:29:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:29:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:29:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:29:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:29:36 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:29:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:29:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:29:36 -0700 + + +Started GET "/tasklist.create" for ::1 at 2016-04-20 20:29:38 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:29:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist.create" for ::1 at 2016-04-20 20:29:45 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:29:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 20:29:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:32:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 20:32:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:43:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (10.5ms) +Completed 200 OK in 41ms (Views: 36.8ms | ActiveRecord: 1.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:43:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:43:03 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:43:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:43:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:43:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:43:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:43:03 -0700 + + +Started GET "/tasklist.create" for ::1 at 2016-04-20 20:43:05 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:43:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 20:43:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:43:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:43:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:43:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:43:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:43:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:43:33 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:43:33 -0700 + + +Started GET "/tasklist.new" for ::1 at 2016-04-20 20:43:35 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:43:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 32ms (Views: 30.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist.new" for ::1 at 2016-04-20 20:43:38 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:44:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:44:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:44:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:44:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:44:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:44:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:44:11 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:44:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:44:11 -0700 + + +Started GET "/" for ::1 at 2016-04-20 20:44:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:44:12 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:44:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:44:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:44:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:44:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:44:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:44:12 -0700 + + +Started GET "/task.new" for ::1 at 2016-04-20 20:44:13 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "task"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:44:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started GET "/task.new" for ::1 at 2016-04-20 20:44:17 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "task"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 20:44:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.4ms) + + +Started GET "/task.new" for ::1 at 2016-04-20 20:44:21 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "task"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:50:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-20 20:50:38 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:50:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 20:50:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.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 20:50:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 20:50:54 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 20:50:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 20:50:58 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:50:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:55:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/task.new" for ::1 at 2016-04-20 20:55:27 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "task"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 20:55:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 20:59:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (13.6ms) +Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/" for ::1 at 2016-04-20 20:59:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 20:59:45 -0700 + + +Started GET "/task.new" for ::1 at 2016-04-20 20:59:47 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "task"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 20:59:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 20:59:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-20 20:59:52 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 20:59:54 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 20:59:57 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 21:00:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-20 21:01:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 21:01:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 21:01:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 21:01:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 21:01:45 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 21:01:45 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 21:01:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 21:01:45 -0700 + + +Started GET "/" for ::1 at 2016-04-20 21:01:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 21:01:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 21:01:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 21:01:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 21:01:46 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 21:01:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 21:01:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 21:01:46 -0700 + + +Started GET "/tasklist.new" for ::1 at 2016-04-20 21:01:48 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 21:01:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 21:01:55 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 21:02:07 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:12: syntax error, unexpected ')' +...pend=( link_to "Add new Task",);@output_buffer.safe_append=' +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:40: syntax error, unexpected keyword_ensure, expecting ')' +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:42: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasklist/index.html.erb:12: syntax error, unexpected ')' + app/views/tasklist/index.html.erb:40: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasklist/index.html.erb:42: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (55.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.0ms) + + +Started GET "/" for ::1 at 2016-04-20 21:02:07 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:12: syntax error, unexpected ')' +...pend=( link_to "Add new Task",);@output_buffer.safe_append=' +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:40: syntax error, unexpected keyword_ensure, expecting ')' +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:42: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasklist/index.html.erb:12: syntax error, unexpected ')' + app/views/tasklist/index.html.erb:40: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasklist/index.html.erb:42: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-20 21:04:27 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 21:04:27 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 21:04:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 21:04:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 21:04:27 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 21:04:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 21:04:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 21:04:27 -0700 + + +Started GET "/" for ::1 at 2016-04-20 21:04:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/new.erb" for ::1 at 2016-04-20 21:04:31 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"new"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "new"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 21:04:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/new.erb" for ::1 at 2016-04-20 21:04:35 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"new"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "new"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 21:05:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-20 21:05:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 21:05:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 21:05:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 21:05:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 21:05:40 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 21:05:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 21:05:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 21:05:40 -0700 + + +Started GET "/stasklist.new" for ::1 at 2016-04-20 21:05:41 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"stasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "stasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 21:05:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 21:05:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.4ms) + + +Started GET "/stasklist.new" for ::1 at 2016-04-20 21:05:48 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"stasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "stasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 21:05:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/stasklist.new" for ::1 at 2016-04-20 21:06:03 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"stasklist"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "stasklist"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 21:06:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-20 21:06:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.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 21:07:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (30.7ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `tasklist' for #<#:0x007fd929170f70> +Did you mean? @tasklist): + 9: + 10: <%end%> + 11:
                                + 12: <%= link_to "Add new Task","#{tasklist.new}"%> + 13: + 14: <%= link_to "home", root_path%> + 15: + app/views/tasklist/index.html.erb:12:in `_app_views_tasklist_index_html_erb___3024998689859750179_70285336989760' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.9ms) + + +Started GET "/stasklist.new" for ::1 at 2016-04-20 21:08:45 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"stasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "stasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 21:08:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 21:08:45 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 21:08:45 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 21:08:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 21:08:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 21:08:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 21:08:45 -0700 + + +Started GET "/" for ::1 at 2016-04-20 21:08:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist.create" for ::1 at 2016-04-20 21:08:48 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-20 21:12:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist.create" for ::1 at 2016-04-20 21:12:06 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist.create" for ::1 at 2016-04-20 21:12:23 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 32ms (Views: 31.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 21:12:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 21:12:23 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 21:12:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 21:12:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 21:12:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 21:12:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 21:12:23 -0700 + + +Started GET "/tasklist.create" for ::1 at 2016-04-20 21:12:24 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 21:12:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 21:12:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 21:12:24 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 21:12:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 21:12:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 21:12:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 21:12:24 -0700 + + +Started GET "/" for ::1 at 2016-04-20 21:12:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-20 21:12:28 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 21:12:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-20 21:12:33 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-20 21:12:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-20 21:12:48 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/articles/new" for ::1 at 2016-04-20 21:34:33 -0700 + +ActionController::RoutingError (No route matches [GET] "/articles/new"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) + Rendered /Users/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.2ms) + Rendered /Users/sakne/.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 (1.0ms) + Rendered /Users/sakne/.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.8ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (86.1ms) + Rendered /Users/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (143.8ms) + + +Started GET "/" for ::1 at 2016-04-20 21:44:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (12.5ms) +Completed 200 OK in 52ms (Views: 46.1ms | ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-20 21:44:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-20 21:44:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-20 21:44:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-20 21:44:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-20 21:44:36 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-20 21:44:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-20 21:44:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-20 21:44:36 -0700 + + +Started GET "/tasklist" for ::1 at 2016-04-20 21:44:39 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 08:28:00 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (1.0ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (7.4ms) +Completed 200 OK in 78ms (Views: 65.0ms | ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 08:28:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.0ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (8.0ms) +Completed 200 OK in 46ms (Views: 43.9ms | ActiveRecord: 1.0ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 08:28:03 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 33ms (Views: 31.6ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 08:28:16 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 08:28:29 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 28ms (Views: 25.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 08:32:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 08:32:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 08:32:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 08:32:12 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-21 08:32:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 08:32:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 08:32:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 08:32:12 -0700 + + +Started GET "/" for ::1 at 2016-04-21 08:32:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/" for ::1 at 2016-04-21 08:32:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/" for ::1 at 2016-04-21 08:32:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 08:32:13 -0700 + + +Started GET "/tasklist" for ::1 at 2016-04-21 08:32:15 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 08:32:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 08:32:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 08:32:20 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 08:32:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-21 08:33:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 27ms (Views: 22.7ms | ActiveRecord: 1.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 08:33:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 08:33:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 08:33:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 08:33:34 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-21 08:33:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 08:33:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 08:33:34 -0700 + + +Started GET "/" for ::1 at 2016-04-21 08:33:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 08:33:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 08:33:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 08:33:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 08:33:35 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-21 08:33:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 08:33:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 08:33:35 -0700 + + +Started GET "/tasklist" for ::1 at 2016-04-21 08:33:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 08:42:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.5ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-21 08:43:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 08:43:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 08:43:10 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/albums/new" for ::1 at 2016-04-21 10:47:31 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActionController::RoutingError (No route matches [GET] "/albums/new"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (11.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (31.3ms) + Rendered /Users/sakne/.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 (132.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (86.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (184.1ms) + + +Started GET "/albums" for ::1 at 2016-04-21 10:47:31 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"albums"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "albums"]] + Rendered tasklist/by_title.erb within layouts/application (4.7ms) +Completed 200 OK in 276ms (Views: 267.4ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-21 10:47:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist.create" for ::1 at 2016-04-21 10:47:33 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.1ms) + + +Started GET "/task" for ::1 at 2016-04-21 10:47:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "task"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist.create" for ::1 at 2016-04-21 10:47:35 -0700 +Processing by TasklistController#by_title as + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 10:47:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 10:47:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.5ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 10:47:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 10:47:39 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 10:47:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 10:47:42 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 10:47:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 10:48:17 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 10:51:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 20ms (Views: 17.4ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-21 10:51:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 10:51:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 10:51:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 10:51:10 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-21 10:51:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 10:51:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 10:51:10 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 10:51:10 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 10:51:12 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (26.2ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `rails_task_lists_path' for #<#:0x007fcfeaf42308> +Did you mean? rails_mailers_path): + 1:

                                New Form

                                + 2: + 3: <%= form_for @tasklist do |f| %> + 4: <%= f.label :title %> + 5: <%= f.text_field :title %> + 6: <%= f.submit %> + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__262330668219443410_70265488378500' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 10:51:13 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.7ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `rails_task_lists_path' for #<#:0x007fcff11995b0> +Did you mean? rails_mailers_path): + 1:

                                New Form

                                + 2: + 3: <%= form_for @tasklist do |f| %> + 4: <%= f.label :title %> + 5: <%= f.text_field :title %> + 6: <%= f.submit %> + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__262330668219443410_70265539969380' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.3ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 10:53:26 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.0ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined method `rails_task_lists_path' for #<#:0x007fcfef2a2170> +Did you mean? rails_mailers_path + rails_info_path + RailsTaskList_path): + 1:

                                New Form

                                + 2: + 3: <%= form_for @tasklist do |f| %> + 4: <%= f.label :title %> + 5: <%= f.text_field :title %> + 6: <%= f.submit %> + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__262330668219443410_70265539969380' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 10:54:05 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (7.7ms) +Completed 200 OK in 27ms (Views: 21.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 10:54:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 10:54:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 10:54:05 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-21 10:54:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 10:54:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 10:54:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 10:54:05 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 10:55:04 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 10:56:29 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UJMbCzWyLhROvRViK6gaCzzA+7+0lCN1ZzJ2ZG6J3gj//2sjGCRWcgLlOrev+hr/IVMFa1KU3UvxFwFrvqQNTA==", "rails_task_list"=>{"title"=>"Trip to England"}, "commit"=>"Create Rails task list"} +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms) + +NameError (undefined local variable or method `tasklist_create_params' for # +Did you mean? tasklist_new_path): + app/controllers/tasklist_controller.rb:20:in `create' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 10:56:49 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 24ms (Views: 16.8ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-21 10:56:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 10:56:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 10:56:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 10:56:52 -0700 + + +Started GET "/assets/application.self-2528b18a7f4f080f72460e593fcef0fecbfc0bd8bb3d22029abb8bea86db8773.css?body=1" for ::1 at 2016-04-21 10:56:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 10:56:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 10:56:52 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 10:56:52 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 10:56:54 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 10:56:59 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Hole7buvtjNcZXdeE9Ra9YolZVhWVAw7k3ULpZmEHWyx5S7FljnOVRA9WIuXhloBl7abjLBU8gUFUHyqSanOKA==", "rails_task_list"=>{"title"=>"Trip to england"}, "commit"=>"Create Rails task list"} +  (0.1ms) begin transaction + SQL (1.3ms) INSERT INTO "rails_task_lists" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 17:56:59.326314"], ["updated_at", "2016-04-21 17:56:59.326314"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-21 10:56:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265525323420' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265525323420' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.7ms) + + +Started GET "/" for ::1 at 2016-04-21 10:59:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (11.2ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.6ms) + + +Started GET "/" for ::1 at 2016-04-21 10:59:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.0ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 10:59:41 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (3.2ms) +Completed 200 OK in 31ms (Views: 29.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 10:59:41 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.0ms) +Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/application.self-9b2e0bd201c5344060ad03915745aea2a4a9b0ea65b475ea5e3137459648d479.css?body=1" for ::1 at 2016-04-21 10:59:41 -0700 + + +Started GET "/" for ::1 at 2016-04-21 10:59:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.8ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265524886240' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265524886240' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.0ms) + + +Started GET "/" for ::1 at 2016-04-21 10:59:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.5ms) + + +Started GET "/" for ::1 at 2016-04-21 10:59:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 11:01:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered /Users/sakne/.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/sakne/.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 (55.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.7ms) + + +Started GET "/" for ::1 at 2016-04-21 11:01:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (44.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.1ms) + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/" for ::1 at 2016-04-21 11:01:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (13.3ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 1.2ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.6ms) + + +Started GET "/" for ::1 at 2016-04-21 11:01:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.5ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 11:01:49 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"tasklist"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "tasklist"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 11:01:49 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:01:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.2ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265524886240' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265524886240' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/sakne/.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 (44.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.7ms) + + +Started GET "/" for ::1 at 2016-04-21 11:01:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.0ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 30: + 31: <% else %> + 32:
                              • + 33: <%= task.id %>. <%= task.title.capitalize %>
                                + 34: <%= task.description %>
                                + 35: Completed On: <%= task.completed_at %> + 36:
                              • + app/views/tasklist/index.html.erb:33:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + app/views/tasklist/index.html.erb:22:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265543328280' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:02:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.1ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265544589780' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265544589780' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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-21 11:02:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.0ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265544589780' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265544589780' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:03:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265544589780' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265544589780' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.3ms) + Rendered /Users/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/index" for ::1 at 2016-04-21 11:03:03 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"index"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "index"]] + Rendered tasklist/by_title.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/index" for ::1 at 2016-04-21 11:03:04 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"index"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "index"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:03:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.6ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265558057060' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265558057060' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (44.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.4ms) + + +Started GET "/" for ::1 at 2016-04-21 11:03:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.0ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb__3887996452677094364_70265544589780' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb__3887996452677094364_70265544589780' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.8ms) + + +Started GET "/" for ::1 at 2016-04-21 11:03:48 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (20.6ms) +Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.7ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147279967800' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147279967800' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (55.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.8ms) + + +Started GET "/" for ::1 at 2016-04-21 11:03:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147279967800' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147279967800' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.6ms) + + +Started GET "/" for ::1 at 2016-04-21 11:03:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147279967800' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147279967800' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.0ms) + + +Started GET "/" for ::1 at 2016-04-21 11:03:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.3ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147279967800' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147279967800' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.7ms) + + +Started GET "/" for ::1 at 2016-04-21 11:04:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.1ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147278600280' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147278600280' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.5ms) + + +Started GET "/" for ::1 at 2016-04-21 11:04:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.8ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `capitalize' for nil:NilClass): + 34: + 35: <% else %> + 36:
                              • + 37: <%= task.id %>. <%= task.title.capitalize %>
                                + 38: <%= task.description %>
                                + 39: Completed On: <%= task.completed_at %> + 40:
                              • + app/views/tasklist/index.html.erb:37:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147279967800' + app/views/tasklist/index.html.erb:26:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147279967800' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (120.5ms) + + +Started GET "/" for ::1 at 2016-04-21 11:07:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 192ms (Views: 191.5ms | ActiveRecord: 0.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 11:07:05 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (3.9ms) +Completed 200 OK in 19ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:07:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 19ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:07:12 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (31.7ms) +Completed 200 OK in 46ms (Views: 45.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:07:19 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"nQIlfIc0/AdAwjkNmmdHLuo+x47omc8EuWealgx7SZYyblVUqqKEYQyaFtgeNUfa9605Wg6ZMTovQu2Z3Faa0g==", "rails_task_list"=>{"title"=>"trip to england"}, "commit"=>"Create Rails task list"} +  (0.2ms) begin transaction + SQL (0.5ms) INSERT INTO "rails_task_lists" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 18:07:19.779064"], ["updated_at", "2016-04-21 18:07:19.779064"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-21 11:07:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:07:23 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.0ms) +Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:07:36 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"XigF/M7RE/5VutqTgLlH8uG9L0wm+3eiFpZd3uNQpZnxRHXU40drmBni9UYE60cG/C7RmMD7iZyAsyrRM3123Q==", "rails_task_list"=>{"title"=>"trip to england"}, "commit"=>"Create Rails task list"} +  (0.1ms) begin transaction + SQL (1.0ms) INSERT INTO "rails_task_lists" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 18:07:36.809967"], ["updated_at", "2016-04-21 18:07:36.809967"]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-04-21 11:07:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:07:41 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.0ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-21 11:07:44 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:07:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:07:48 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:08:23 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"veW2liKaPryfhibuHpXCvsn1w2xDMN+UKjnlRbXrz2ESica+DwxG2tPeCTuax8JK1GY9uKUwIaq8HJJKZcYcJQ==", "rails_task_list"=>{"title"=>"trip to england"}, "commit"=>"Create Rails task list"} +  (0.1ms) begin transaction + SQL (1.4ms) INSERT INTO "rails_task_lists" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 18:08:23.654754"], ["updated_at", "2016-04-21 18:08:23.654754"]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-04-21 11:08:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:08:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:08:27 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (0.8ms) +Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms) + + +Started GET "/Nap" for ::1 at 2016-04-21 11:08:29 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Nap"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-21 11:08:32 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Second Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-21 11:08:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:08:38 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:09:59 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"KbN7hW929T1v4eWsR6PcSL2hh04S5LoFf4bVoTcCbqiG3wutQuCNWyO5ynnD8dy8oDJ5mvTkRDvpo6Ku5y+97A==", "rails_task_list"=>{"title"=>"trip to england"}, "commit"=>"Create Rails task list"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 18:09:59.161891"], ["updated_at", "2016-04-21 18:09:59.161891"]] +  (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 11:09:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 11:11:27 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 11:11:31 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:11:35 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:11:41 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"tZyHE0GvKZeVkVfNsG2GSJnjPBckhFXwhld3bKrSqvga8Pc7bDlR8dnJeBg0P4a8hHDCw8KEq84QcgBjev95vA==", "rails_task_list"=>{"title"=>"more fun things"}, "commit"=>"Create Rails task list"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "rails_task_lists" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 18:11:41.566317"], ["updated_at", "2016-04-21 18:11:41.566317"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:11:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:12:06 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:12:13 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kd2EVsna2uNA5tT//MYulLw/0Iuy8a3X2CkibrkKlJiGsfR+5EyihQy++yp4lC5goawuX1TxU+lODFVhaSdH3A==", "rails_task_list"=>{"title"=>"more funhtings"}, "commit"=>"Create Rails task list"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 18:12:13.320769"], ["updated_at", "2016-04-21 18:12:13.320769"]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/" for ::1 at 2016-04-21 11:12:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:12:18 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:12:21 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ulHeuo4JshPVDUMn0aTiIpWUXxcF8FOcnAj9LekUNk4VPa6So5/KdZlVbPJV9uLWiAehw+PwraIKLYoiOTnlCg==", "rails_task_list"=>{"title"=>"lots"}, "commit"=>"Create Rails task list"} +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 18:12:21.511071"], ["updated_at", "2016-04-21 18:12:21.511071"]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.8ms) + + +Started GET "/" for ::1 at 2016-04-21 11:12:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-21 11:14:06 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:14:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.4ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-21 11:14:13 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:14:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 11:14:18 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:14:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started GET "/Nap" for ::1 at 2016-04-21 11:15:31 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Nap"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-21 11:15:34 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:15:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.3ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-21 11:15:41 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Lunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Lunch"]] + Rendered tasklist/by_title.erb within layouts/application (1.4ms) +Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:15:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-21 11:15:47 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 11:16:03 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Go to Brunch"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-21 11:16:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:16:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 11:16:19 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-21 11:16:21 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-21 11:16:25 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "She worries, you know"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 11:16:50 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 11:16:55 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "High Five Somebody You Don't Know"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:16:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-21 11:17:00 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Call Mom"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:17:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-21 11:17:04 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:17:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 11:17:08 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"The First Task"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "The First Task"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:17:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-21 11:17:11 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Play Video Games"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:18:48 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.7ms) +Completed 200 OK in 22ms (Views: 16.5ms | ActiveRecord: 0.4ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:18:52 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"lbyBrlHnEh/6t5FaF7k+IMNtbKtAsjMZvKE/ETfRfaM60PGGfHFqebbvvo+T6z7U3v6Sf6ayzScqhEge5/yu5w==", "rails_task_list"=>{"title"=>"fun times"}, "commit"=>"Create Rails task list"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +RuntimeError (): + app/controllers/tasklist_controller.rb:21:in `create' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.3ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:19:57 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"lbyBrlHnEh/6t5FaF7k+IMNtbKtAsjMZvKE/ETfRfaM60PGGfHFqebbvvo+T6z7U3v6Sf6ayzScqhEge5/yu5w==", "rails_task_list"=>{"title"=>"fun times"}, "commit"=>"Create Rails task list"} +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.5ms) + +ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError): + app/controllers/tasklist_controller.rb:20:in `create' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.7ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:22:22 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"lbyBrlHnEh/6t5FaF7k+IMNtbKtAsjMZvKE/ETfRfaM60PGGfHFqebbvvo+T6z7U3v6Sf6ayzScqhEge5/yu5w==", "rails_task_list"=>{"title"=>"fun times"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "rails_task_lists" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "fun times"], ["created_at", "2016-04-21 18:22:22.103781"], ["updated_at", "2016-04-21 18:22:22.103781"]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 2.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:22:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 11:22:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 11:22:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 11:22:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 11:22:22 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 11:22:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 11:22:22 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 11:22:22 -0700 + + +Started GET "/fun%20times" for ::1 at 2016-04-21 11:22:29 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"fun times"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "fun times"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-21 11:22:35 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Plant Flowers"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Plant Flowers"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 11:22:41 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"fun times"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "fun times"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 11:22:46 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"fun times"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "fun times"]] + Rendered tasklist/by_title.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:23:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:23:10 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 11:23:52 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"fun times"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "fun times"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:24:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.4ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 11:24:26 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"fun times"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "fun times"]] + Rendered tasklist/by_title.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 11:24:27 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:24:30 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 11:24:48 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"fun times"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "fun times"]] + Rendered tasklist/by_title.erb within layouts/application (1.2ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 11:24:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 11:24:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 11:24:48 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 11:24:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 11:24:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 11:24:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 11:24:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 11:24:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 11:24:52 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"fun times"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "fun times"]] + Rendered tasklist/by_title.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:24:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:24:54 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:24:58 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 11:25:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 11:25:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 11:25:17 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 11:25:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 11:25:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 11:25:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 11:25:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 11:25:17 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:25:18 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 11:25:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 11:25:23 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 11:25:33 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"m9YYI8YikMv2BWCILOYBNXvs5dNIrS94SteSN3gCbmA0umgL67TorbpdT12otAHBZn8bB66t0Ubc8uU4qC+9JA==", "rails_task_list"=>{"title"=>"more fun times"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (1.5ms) INSERT INTO "rails_task_lists" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "more fun times"], ["created_at", "2016-04-21 18:25:33.565696"], ["updated_at", "2016-04-21 18:25:33.565696"]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 3.0ms) + + +Started GET "/" for ::1 at 2016-04-21 11:25:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/more%20fun%20times" for ::1 at 2016-04-21 11:25:36 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"more fun times"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "more fun times"]] + Rendered tasklist/by_title.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:25:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:27:12 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected => + delete '/tasklist#index', => 'tasklist#destroy' + ^): + config/routes.rb:8: syntax error, unexpected => + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.1ms) + + +Started GET "/" for ::1 at 2016-04-21 11:28:34 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) + Rendered /Users/sakne/.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/sakne/.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 (51.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:28:43 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/" for ::1 at 2016-04-21 11:28:55 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (41.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.6ms) + + +Started GET "/index" for ::1 at 2016-04-21 11:28:56 -0700 + +ActionController::RoutingError (No route matches [GET] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (43.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.0ms) + + +Started GET "/index" for ::1 at 2016-04-21 11:28:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/sakne/.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/sakne/.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 (53.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.6ms) + + +Started GET "/" for ::1 at 2016-04-21 11:29:05 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (41.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (79.9ms) + + +Started GET "/" for ::1 at 2016-04-21 11:29:05 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (43.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.8ms) + + +Started GET "/" for ::1 at 2016-04-21 11:29:07 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (41.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.2ms) + + +Started GET "/" for ::1 at 2016-04-21 11:29:08 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.0ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-21 11:29:46 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (41.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.1ms) + + +Started GET "/She%20worries,%20you%20know" for ::1 at 2016-04-21 11:29:46 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (43.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.0ms) + + +Started GET "/" for ::1 at 2016-04-21 11:30:56 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected => + delete '/tasklist#index', => 'tasklist#delete' + ^): + config/routes.rb:8: syntax error, unexpected => + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.8ms) + + +Started GET "/" for ::1 at 2016-04-21 11:31:49 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected => + delete '/tasklist#index', => 'tasklist#delete' + ^): + config/routes.rb:8: syntax error, unexpected => + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.4ms) + + +Started GET "/" for ::1 at 2016-04-21 12:35:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 27ms (Views: 24.3ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 12:35:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 12:35:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 12:35:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 12:35:29 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 12:35:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 12:35:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 12:35:29 -0700 + + +Started GET "/more%20fun%20times" for ::1 at 2016-04-21 12:35:34 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"more fun times"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "more fun times"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/Nap" for ::1 at 2016-04-21 12:35:39 -0700 +Processing by TasklistController#by_title as HTML + Parameters: {"title"=>"Nap"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."title" = ? [["title", "Nap"]] + Rendered tasklist/by_title.erb within layouts/application (0.8ms) +Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 12:38:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/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-21 12:40:36 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:11: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +...Delete", tasklist_delete_path :confirm => "Are you sure?", :... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:11: syntax error, unexpected ',', expecting ')' +...th :confirm => "Are you sure?", :method => :delete );@output... +... ^): + app/views/tasklist/index.html.erb:11: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + app/views/tasklist/index.html.erb:11: syntax error, unexpected ',', expecting ')' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.5ms) + + +Started GET "/" for ::1 at 2016-04-21 12:41:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (37.5ms) +Completed 500 Internal Server Error in 47ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined local variable or method `tasklist_delete_path' for #<#:0x007f98e310ed10> +Did you mean? tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to "Delete", tasklist_delete_path%>" + 12:
                              • + 13: + 14: <%end%> + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.1ms) + + +Started GET "/" for ::1 at 2016-04-21 12:42:01 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + delete '/tasklist#index' => 'tasklist#delete' as: tasklist_delete + ^): + config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started GET "/" for ::1 at 2016-04-21 12:42:29 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + delete '/tasklist#index' => 'tasklist#delete' as: "tasklist_delete" + ^): + config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (52.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.6ms) + + +Started GET "/" for ::1 at 2016-04-21 12:43:08 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + delete '/tasklist#index' => 'tasklist#delete' as: 'rails_task_lists' + ^): + config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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-21 12:43:10 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.0ms) + + +Started GET "/" for ::1 at 2016-04-21 12:43:24 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end +...#index' => 'tasklist#delete' as: 'rails_task_delete' +... ^): + config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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-21 12:43:50 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end +.../index' => 'tasklist#delete' as: 'rails_task_delete' +... ^): + config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.6ms) + + +Started GET "/" for ::1 at 2016-04-21 12:43:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (44.1ms) +Completed 500 Internal Server Error in 53ms (ActiveRecord: 0.6ms) + +ActionView::Template::Error (undefined local variable or method `tasklist_delete_path' for #<#:0x007f98e0cada70> +Did you mean? tasklist_index_path + tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to "Delete", tasklist_delete_path%>" + 12:
                              • + 13: + 14: <%end%> + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.4ms) + + +Started GET "/" for ::1 at 2016-04-21 12:44:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (39.4ms) +Completed 500 Internal Server Error in 46ms (ActiveRecord: 0.6ms) + +ActionView::Template::Error (undefined local variable or method `tasklist_delete_path' for #<#:0x007f98e0fc50a0> +Did you mean? tasklist_index_path + tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to "Delete", tasklist_delete_path%>" + 12:
                              • + 13: + 14: <%end%> + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.2ms) + + +Started GET "/" for ::1 at 2016-04-21 12:44:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (35.4ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined local variable or method `tasklist_delete_path' for #<#:0x007f98e2a557a8> +Did you mean? tasklist_index_path + tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to "Delete", tasklist_delete_path%>" + 12:
                              • + 13: + 14: <%end%> + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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-21 12:44:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (40.7ms) +Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined local variable or method `tasklist_delete_path' for #<#:0x007f98de25cd48> +Did you mean? tasklist_index_path + tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to "Delete", tasklist_delete_path%>" + 12:
                              • + 13: + 14: <%end%> + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.9ms) + + +Started GET "/" for ::1 at 2016-04-21 12:45:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (48.8ms) +Completed 500 Internal Server Error in 52ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `tasklist_delete_path' for #<#:0x007f98e449a708> +Did you mean? tasklist_index_path + tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to "Delete", tasklist_delete_path%>" + 12:
                              • + 13: + 14: <%end%> + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147310644420' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.8ms) + + +Started GET "/" for ::1 at 2016-04-21 12:45:35 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end +.../index' => 'tasklist#delete' as: tasklist_delete_path +... ^): + config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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-21 12:45:47 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end +.../index' => 'tasklist#delete' as: 'tasklist_delete_path' +... ^): + config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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-21 12:46:54 -0700 + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + delete '/tasklist/index' => 'tasklist#delete' as: 'tasklist_delete' + ^): + config/routes.rb:8: syntax error, unexpected tIDENTIFIER, expecting keyword_end + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.3ms) + + +Started GET "/" for ::1 at 2016-04-21 12:47: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (50.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.3ms) + + +Started GET "/" for ::1 at 2016-04-21 12:47:53 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) + Rendered /Users/sakne/.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 (48.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.6ms) + + +Started GET "/" for ::1 at 2016-04-21 12:48:00 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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-21 12:48:05 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.8ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 12:48:10 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist/new"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.9ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 12:50:18 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist/new"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.9ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 12:50:19 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist/new"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.1ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 12:50:25 -0700 + +ActionController::RoutingError (No route matches [GET] "/fun%20times"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (40.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 12:50:27 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (41.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.9ms) + + +Started GET "/" for ::1 at 2016-04-21 12:50:27 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.8ms) + + +Started GET "/" for ::1 at 2016-04-21 12:51:07 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.7ms) + + +Started GET "/" for ::1 at 2016-04-21 12:51:08 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.6ms) + + +Started GET "/" for ::1 at 2016-04-21 12:51:11 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) + Rendered /Users/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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-21 12:51:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (46.9ms) +Completed 500 Internal Server Error in 56ms (ActiveRecord: 0.8ms) + +ActionView::Template::Error (undefined method `rails_task_list_path' for #<#:0x007f98e29e4c88> +Did you mean? rails_task_lists_path + rails_task_lists_url): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Destroy', rails_task_list_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/" for ::1 at 2016-04-21 12:52:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (37.8ms) +Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.6ms) + +ActionView::Template::Error (undefined method `rails_task_list_path' for #<#:0x007f98dcb05320> +Did you mean? rails_task_lists_path + rails_task_lists_url): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Destroy', rails_task_list_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.1ms) + + +Started GET "/" for ::1 at 2016-04-21 12:52:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (37.7ms) +Completed 500 Internal Server Error in 42ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `rails_task_list_path' for #<#:0x007f98e4a643f0> +Did you mean? rails_task_lists_path + rails_task_lists_url): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Destroy', rails_task_list_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.4ms) + + +Started GET "/" for ::1 at 2016-04-21 12:54:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (34.9ms) +Completed 500 Internal Server Error in 42ms (ActiveRecord: 0.6ms) + +ActionView::Template::Error (undefined method `rails_task_list_path' for #<#:0x007f98ddc1c690> +Did you mean? rails_task_lists_path + rails_task_lists_url): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Destroy', rails_task_list_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.8ms) + + +Started GET "/" for ::1 at 2016-04-21 12:54:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (31.2ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `rails_task_list_path' for #<#:0x007f98e46eb5c0> +Did you mean? rails_task_lists_path + rails_task_lists_url): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Destroy', rails_task_list_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.6ms) + + +Started GET "/" for ::1 at 2016-04-21 12:57:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (32.7ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined method `rails_task_list_path' for #<#:0x007f98e32d3038> +Did you mean? rails_task_lists_path + rails_task_lists_url): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Destroy', rails_task_list_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 12:57:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (30.8ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `rails_task_list_path' for #<#:0x007f98e4819668> +Did you mean? rails_task_lists_path + rails_task_lists_url): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Destroy', rails_task_list_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.3ms) + + +Started GET "/" for ::1 at 2016-04-21 13:11:41 -0700 + +ArgumentError (Missing :controller key on routes definition, please check your routes.): + config/routes.rb:3:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (52.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.4ms) + + +Started GET "/" for ::1 at 2016-04-21 13:13:45 -0700 + +ArgumentError (Missing :controller key on routes definition, please check your routes.): + config/routes.rb:3:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/" for ::1 at 2016-04-21 13:13:46 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (43.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.3ms) + + +Started GET "/" for ::1 at 2016-04-21 13:13: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.9ms) + + +Started GET "/" for ::1 at 2016-04-21 13:13:54 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.0ms) + + +Started GET "/" for ::1 at 2016-04-21 13:14:32 -0700 + +ArgumentError (Missing :controller key on routes definition, please check your routes.): + config/routes.rb:3:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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-21 13:15:23 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (43.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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-21 13:15:24 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.8ms) + + +Started GET "/" for ::1 at 2016-04-21 13:15:25 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (43.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.5ms) + + +Started GET "/" for ::1 at 2016-04-21 13:15:28 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (47.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.7ms) + + +Started GET "/index" for ::1 at 2016-04-21 13:15:46 -0700 + +ActionController::RoutingError (No route matches [GET] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (41.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.1ms) + + +Started GET "/index" for ::1 at 2016-04-21 13:15:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.0ms) + + +Started GET "/index" for ::1 at 2016-04-21 13:15:51 -0700 + +ActionController::RoutingError (No route matches [GET] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.0ms) + + +Started GET "/index" for ::1 at 2016-04-21 13:18:43 -0700 + +ArgumentError (Missing :controller key on routes definition, please check your routes.): + config/routes.rb:3:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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-21 13:19:53 -0700 + +ActionController::RoutingError (No route matches [GET] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (47.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.1ms) + + +Started GET "/index" for ::1 at 2016-04-21 13:19:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.0ms) + + +Started GET "/index" for ::1 at 2016-04-21 13:21:36 -0700 + +ActionController::RoutingError (No route matches [GET] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (47.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.1ms) + + +Started GET "/index" for ::1 at 2016-04-21 13:21:40 -0700 + +ActionController::RoutingError (No route matches [GET] "/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.9ms) + + +Started GET "/" for ::1 at 2016-04-21 13:21:49 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (41.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (81.8ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:21:50 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (41.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.9ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:21:51 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.1ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:21:55 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.4ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:21:56 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.4ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:26:51 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.7ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:26:52 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.0ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:26:55 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:30:07 -0700 + +ArgumentError (Missing :controller key on routes definition, please check your routes.): + config/routes.rb:3:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.8ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:30:12 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.1ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:30:14 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) + Rendered /Users/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.9ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:36:49 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.8ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:36:51 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.9ms) + + +Started GET "/task" for ::1 at 2016-04-21 13:36:56 -0700 + +ActionController::RoutingError (No route matches [GET] "/task"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/sakne/.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 (89.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (117.9ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:36:56 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.7ms) + + +Started GET "/" for ::1 at 2016-04-21 13:36:57 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (41.8ms) +Completed 500 Internal Server Error in 49ms (ActiveRecord: 0.6ms) + +ActionView::Template::Error (undefined method `rails_task_list_path' for #<#:0x007f98e2a8d248> +Did you mean? rails_mailers_path): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Destroy', rails_task_list_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.3ms) + + +Started GET "/" for ::1 at 2016-04-21 13:36:57 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (50.6ms) +Completed 500 Internal Server Error in 55ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `rails_task_list_path' for #<#:0x007f98e417be00> +Did you mean? rails_mailers_path): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Destroy', rails_task_list_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147306880000' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.9ms) + + +Started GET "/" for ::1 at 2016-04-21 13:39:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:39:07 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:39:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:39:07 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:39:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:39:08 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:39:08 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 13:39:08 -0700 + + +Started GET "/more%20fun%20times" for ::1 at 2016-04-21 13:39:17 -0700 + +ActionController::RoutingError (No route matches [GET] "/more%20fun%20times"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.2ms) + + +Started GET "/more%20fun%20times" for ::1 at 2016-04-21 13:39:18 -0700 + +ActionController::RoutingError (No route matches [GET] "/more%20fun%20times"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.0ms) + + +Started DELETE "/tasklist.11" for ::1 at 2016-04-21 13:39:47 -0700 + +ActionController::RoutingError (uninitialized constant TakslistController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + 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 `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259: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 `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: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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.8ms) + + +Started DELETE "/tasklist.10" for ::1 at 2016-04-21 13:40:07 -0700 + +ActionController::RoutingError (uninitialized constant TakslistController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + 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 `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259: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 `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: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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.6ms) + + +Started DELETE "/tasklist.7" for ::1 at 2016-04-21 13:40:48 -0700 + +ActionController::RoutingError (uninitialized constant TakslistController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + 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 `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259: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 `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: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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.4ms) + + +Started DELETE "/tasklist.6" for ::1 at 2016-04-21 13:41:30 -0700 + +ActionController::RoutingError (uninitialized constant TakslistController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + 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 `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259: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 `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: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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.6ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 13:41:50 -0700 + +ActionController::RoutingError (No route matches [GET] "/fun%20times"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.9ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 13:41:50 -0700 + +ActionController::RoutingError (No route matches [GET] "/fun%20times"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) + Rendered /Users/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.6ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 13:41:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/fun%20times"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (53.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.7ms) + + +Started GET "/fun%20times" for ::1 at 2016-04-21 13:41:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/fun%20times"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:42:03 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (53.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.9ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:42:03 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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-21 13:43:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:43:04 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 13:43:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:43:04 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:43:04 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:43:04 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:43:04 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:43:04 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 13:43:08 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 13:43:08 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-21 13:43:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Lunch"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-21 13:43:27 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Lunch"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.4ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-21 13:45:17 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Lunch"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.7ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-21 13:45:18 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Lunch"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.5ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-21 13:45:24 -0700 + +ActionController::RoutingError (No route matches [GET] "/Go%20to%20Lunch"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.2ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-21 13:45:24 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.7ms) + + +Started GET "/" for ::1 at 2016-04-21 13:45:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (8.2ms) +Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-21 13:45:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:45:28 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.6ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:45:28 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.6ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:46:16 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.4ms) + + +Started GET "/" for ::1 at 2016-04-21 13:46:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:46:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 13:46:22 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (33.1ms) +Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `rails_task_lists_path' for #<#:0x007f98e48eeac0> +Did you mean? rails_mailers_path): + 1:

                                New Form

                                + 2: + 3: <%= form_for @tasklist do |f| %> + 4: <%= f.label :title %> + 5: <%= f.text_field :title %> + 6: <%= f.submit %> + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__2585183310108126598_70147306496240' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.3ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 13:46:22 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (30.6ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `rails_task_lists_path' for #<#:0x007f98df4941a0> +Did you mean? rails_mailers_path): + 1:

                                New Form

                                + 2: + 3: <%= form_for @tasklist do |f| %> + 4: <%= f.label :title %> + 5: <%= f.text_field :title %> + 6: <%= f.submit %> + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__2585183310108126598_70147278912080' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.8ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 13:49:50 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (26.8ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `rails_task_lists_path' for #<#:0x007f98e4413190> +Did you mean? rails_mailers_path): + 1:

                                New Form

                                + 2: + 3: <%= form_for @tasklist do |f| %> + 4: <%= f.label :title %> + 5: <%= f.text_field :title %> + 6: <%= f.submit %> + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__2585183310108126598_70147278912080' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.3ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 13:49:54 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (22.4ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `rails_task_lists_path' for #<#:0x007f98e319cb38> +Did you mean? rails_mailers_path): + 1:

                                New Form

                                + 2: + 3: <%= form_for @tasklist do |f| %> + 4: <%= f.label :title %> + 5: <%= f.text_field :title %> + 6: <%= f.submit %> + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__2585183310108126598_70147278912080' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (61.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.7ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:49:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (53.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.4ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:49:55 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.5ms) + + +Started GET "/task" for ::1 at 2016-04-21 13:49:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/task"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) + Rendered /Users/sakne/.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 (79.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.1ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:49:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.0ms) + + +Started GET "/" for ::1 at 2016-04-21 13:49:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:50:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:50:02 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.0ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:50:02 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) + Rendered /Users/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:50:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 13:50:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.3ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:50:49 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:50:49 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.9ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:53:08 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.6ms) + + +Started GET "/" for ::1 at 2016-04-21 13:53:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 30ms (Views: 26.5ms | ActiveRecord: 0.6ms) + + +Started GET "/more%20fun%20times" for ::1 at 2016-04-21 13:53:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/more%20fun%20times"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.4ms) + + +Started GET "/more%20fun%20times" for ::1 at 2016-04-21 13:53:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/more%20fun%20times"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/" for ::1 at 2016-04-21 13:53:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 13:53:49 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (33.5ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `rails_task_lists_path' for #<#:0x007f98e36d3070> +Did you mean? rails_mailers_path): + 1:

                                New Form

                                + 2: + 3: <%= form_for @tasklist do |f| %> + 4: <%= f.label :title %> + 5: <%= f.text_field :title %> + 6: <%= f.submit %> + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__2585183310108126598_70147306496240' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 13:53:50 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (28.9ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `rails_task_lists_path' for #<#:0x007f98de2159e8> +Did you mean? rails_mailers_path): + 1:

                                New Form

                                + 2: + 3: <%= form_for @tasklist do |f| %> + 4: <%= f.label :title %> + 5: <%= f.text_field :title %> + 6: <%= f.submit %> + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__2585183310108126598_70147278912080' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.7ms) + + +Started GET "/" for ::1 at 2016-04-21 13:54:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 27ms (Views: 24.2ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:54:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:54:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:54:44 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 13:54:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:54:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:54:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:54:44 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 13:54:46 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.0ms) + + +Started POST "/takslist" for ::1 at 2016-04-21 13:54:51 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"luM1lWTum2gU3tdfub5cBaMX2cBUTBTmYI5XTYwINb85j0W9SXjjDliG+Io97FzxvoQnFLJM6tj2qyBCXCXm+w==", "rails_task_list"=>{"title"=>"yes yes yes"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "yes yes yes"], ["created_at", "2016-04-21 20:54:51.264851"], ["updated_at", "2016-04-21 20:54:51.264851"]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/" for ::1 at 2016-04-21 13:54:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 13:55:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (32.6ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 1.2ms) + +ActionView::Template::Error (undefined method `tasklist_path' for #<#:0x007f98e476e3d0> +Did you mean? tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Delete', tasklist_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.1ms) + + +Started GET "/" for ::1 at 2016-04-21 13:55:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (29.3ms) +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `tasklist_path' for #<#:0x007f98e4802170> +Did you mean? tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Delete', tasklist_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.5ms) + + +Started GET "/" for ::1 at 2016-04-21 13:55:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (29.5ms) +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `tasklist_path' for #<#:0x007f98e2879bf0> +Did you mean? tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Delete', tasklist_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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:56:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:56:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:56:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:56:21 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 13:56:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:56:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:56:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:56:21 -0700 + + +Started DELETE "/tasklist.10" for ::1 at 2016-04-21 13:56:27 -0700 + +ActionController::RoutingError (uninitialized constant TakslistController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + 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 `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259: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 `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: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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.3ms) + + +Started GET "/tasklist.10" for ::1 at 2016-04-21 13:57:08 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist.10"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) + Rendered /Users/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (124.7ms) + + +Started GET "/tasklist.create" for ::1 at 2016-04-21 13:57:08 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist.create"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (87.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.8ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:57:09 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.2ms) + + +Started GET "/task" for ::1 at 2016-04-21 13:57:09 -0700 + +ActionController::RoutingError (No route matches [GET] "/task"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/sakne/.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 (88.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.3ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 13:57:09 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.2ms) + + +Started GET "/" for ::1 at 2016-04-21 13:57:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (31.3ms) +Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined method `tasklist_path' for #<#:0x007f98ddec4f00> +Did you mean? tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Delete', tasklist_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.7ms) + + +Started GET "/" for ::1 at 2016-04-21 13:57:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (33.5ms) +Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (undefined method `tasklist_path' for #<#:0x007f98e36aa148> +Did you mean? tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Delete', tasklist_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 13:57:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (28.2ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `tasklist_path' for #<#:0x007f98e2ca8b90> +Did you mean? tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Delete', tasklist_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (15.7ms) + Rendered /Users/sakne/.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/sakne/.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 (63.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.8ms) + + +Started GET "/" for ::1 at 2016-04-21 13:58:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (28.1ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `tasklist_path' for #<#:0x007f98e417a190> +Did you mean? tasklist_new_path): + 8: + 9: + 10:
                              • + 11: <%= link_to 'Delete', tasklist_path(task), + 12: method: :delete, + 13: data: { confirm: 'Are you sure?' } %> + 14:
                              • + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2644194642654756656_70147323963600' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.7ms) + + +Started GET "/" for ::1 at 2016-04-21 13:58:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 27ms (Views: 25.1ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 13:58:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 13:58:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 13:58:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 13:58:56 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 13:58:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 13:58:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 13:58:56 -0700 + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-21 13:58:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/Plant%20Flowers"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.6ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-21 13:58:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/Plant%20Flowers"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.0ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:59:03 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 13:59:04 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 14:00:46 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.7ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 14:00:47 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.9ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 14:00:59 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 14:00:59 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.9ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 14:02:10 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.9ms) + + +Started GET "/" for ::1 at 2016-04-21 14:02:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-21 14:02:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 14:02:15 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.4ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 14:02:15 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) + Rendered /Users/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.6ms) + + +Started GET "/" for ::1 at 2016-04-21 14:02:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 14:02:51 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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.8ms) + Rendered /Users/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.0ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 14:02:51 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 14:04:10 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.5ms) + + +Started GET "/" for ::1 at 2016-04-21 14:04:14 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:8: unknown regexp option - l +unmatched close parenthesis: /task.title}");@output_buffer.safe_append=' + + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:17: unknown regexp option - l +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:21: unterminated string meets end of file +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:21: syntax error, unexpected end-of-input, expecting tSTRING_DEND): + app/views/tasklist/index.html.erb:8: unknown regexp option - l + app/views/tasklist/index.html.erb:10: syntax error, unexpected '<' + app/views/tasklist/index.html.erb:11: syntax error, unexpected tCONSTANT, expecting tSTRING_DEND + app/views/tasklist/index.html.erb:13: syntax error, unexpected tCONSTANT, expecting tSTRING_DEND + app/views/tasklist/index.html.erb:14: syntax error, unexpected '<', expecting tSTRING_DEND + app/views/tasklist/index.html.erb:17: unknown regexp option - l + app/views/tasklist/index.html.erb:21: unterminated string meets end of file + app/views/tasklist/index.html.erb:21: syntax error, unexpected end-of-input, expecting tSTRING_DEND + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.8ms) + + +Started GET "/" for ::1 at 2016-04-21 14:05:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:05:18 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 14:05:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:05:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:05:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:05:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:05:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:05:18 -0700 + + +Started GET "/tasks/1" for ::1 at 2016-04-21 14:05:22 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.2ms) + + +Started GET "/tasks/1" for ::1 at 2016-04-21 14:05:22 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.3ms) + + +Started GET "/" for ::1 at 2016-04-21 14:06:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.8ms) +Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:06:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:06:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:06:37 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 14:06:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:06:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:06:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:06:37 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:06:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + +ActionView::MissingTemplate (Missing template tasklist/show, application/show with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (49.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.3ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:06:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms) + +ActionView::MissingTemplate (Missing template tasklist/show, application/show with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/TaskListRails/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/sakne/.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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (48.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.4ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:09:14 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (6.5ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                  + 7: <%@tasklist.each do |task|%> + 8:
                                • + 9: <%= link_to task.show, "#{task.title}"%> + 10:
                                • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147269436140' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.7ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:10:14 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (5.8ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                    + 7: <%@tasklist.each do |task|%> + 8:
                                  • + 9: <%= link_to task.show, "#{task.title}"%> + 10:
                                  • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147268955340' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (61.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.2ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:10:14 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (5.4ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                      + 7: <%@tasklist.each do |task|%> + 8:
                                    • + 9: <%= link_to task.show, "#{task.title}"%> + 10:
                                    • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147269436140' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.9ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.1ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:10:15 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (4.5ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                        + 7: <%@tasklist.each do |task|%> + 8:
                                      • + 9: <%= link_to task.show, "#{task.title}"%> + 10:
                                      • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147269436140' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.7ms) + + +Started PUT "/__web_console/repl_sessions/afe2a346c7ffb6bfa020dd78c36d56d2" for ::1 at 2016-04-21 14:10:34 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:11:17 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (5.0ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                          + 7: <%@tasklist.each do |task|%> + 8:
                                        • + 9: <%= link_to task.title, "#{task.title}"%> + 10:
                                        • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147311105500' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.7ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 14:11:24 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 14:11:24 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) + Rendered /Users/sakne/.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 (66.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.7ms) + + +Started GET "/task" for ::1 at 2016-04-21 14:11:25 -0700 + +ActionController::RoutingError (No route matches [GET] "/task"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (118.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.7ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 14:11:25 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.4ms) + + +Started GET "/" for ::1 at 2016-04-21 14:11:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 14:11:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-21 14:11:29 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (5.5ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                            + 7: <%@tasklist.each do |task|%> + 8:
                                          • + 9: <%= link_to task.title, "#{task.title}"%> + 10:
                                          • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147313523860' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.8ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-21 14:11:29 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (5.7ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                              + 7: <%@tasklist.each do |task|%> + 8:
                                            • + 9: <%= link_to task.title, "#{task.title}"%> + 10:
                                            • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147311105500' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.6ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:12:49 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (7.1ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                                + 7: <%@tasklist.each do |task|%> + 8:
                                              • + 9: <%= link_to task.title, "/show/#{task.title}"%> + 10:
                                              • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147313762740' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.0ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:12:49 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (5.4ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                                  + 7: <%@tasklist.each do |task|%> + 8:
                                                • + 9: <%= link_to task.title, "/show/#{task.title}"%> + 10:
                                                • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147310654840' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/sakne/.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/sakne/.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 (64.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:12:59 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (5.4ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                                    + 7: <%@tasklist.each do |task|%> + 8:
                                                  • + 9: <%= link_to task.title, "/tasklist/#{task.title}"%> + 10:
                                                  • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147311665760' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.2ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-21 14:13:09 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (8.9ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                                      + 7: <%@tasklist.each do |task|%> + 8:
                                                    • + 9: <%= link_to task.title, "/tasklist/#{task.title}"%> + 10:
                                                    • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147293030540' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.0ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-21 14:13:09 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (6.5ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                                        + 7: <%@tasklist.each do |task|%> + 8:
                                                      • + 9: <%= link_to task.title, "/tasklist/#{task.title}"%> + 10:
                                                      • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147311665760' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.9ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 14:14:30 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 14:14:33 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"y05g2AjF8QzSl8MZ1/vAKuFZveEB627XD8+icgfNUatkIhDwJVOJap7P7MxTqcDe/MpDNefrkOmZ6tV91+CC7w==", "rails_task_list"=>{"title"=>"fdsfa"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "fdsfa"], ["created_at", "2016-04-21 21:14:33.588454"], ["updated_at", "2016-04-21 21:14:33.588454"]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:14:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/5" for ::1 at 2016-04-21 14:14:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/show.erb within layouts/application (5.2ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                                          + 7: <%@tasklist.each do |task|%> + 8:
                                                        • + 9: <%= link_to task.title, "/tasklist/#{task.title}"%> + 10:
                                                        • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147293030540' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.3ms) + + +Started GET "/tasklist/5" for ::1 at 2016-04-21 14:14:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/show.erb within layouts/application (4.5ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                                            + 7: <%@tasklist.each do |task|%> + 8:
                                                          • + 9: <%= link_to task.title, "/tasklist/#{task.title}"%> + 10:
                                                          • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147311665760' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (18.5ms) + Rendered /Users/sakne/.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/sakne/.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 (65.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.3ms) + + +Started GET "/tasklist/5" for ::1 at 2016-04-21 14:15:36 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/show.erb within layouts/application (5.4ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                                              + 7: <%@tasklist.each do |task|%> + 8:
                                                            • + 9: <%= link_to task.title, "/tasklist/#{task.title}"%> + 10:
                                                            • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147311665760' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.4ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:15:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (5.6ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                                                + 7: <%@tasklist.each do |task|%> + 8:
                                                              • + 9: <%= link_to task.title, "/tasklist/#{task.title}"%> + 10:
                                                              • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147293030540' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.1ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:15:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (4.6ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for #): + 4: + 5: + 6:
                                                                  + 7: <%@tasklist.each do |task|%> + 8:
                                                                • + 9: <%= link_to task.title, "/tasklist/#{task.title}"%> + 10:
                                                                • + app/views/tasklist/show.erb:7:in `_app_views_tasklist_show_erb___901381564438299253_70147311665760' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 14:17:17 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasklist/5" for ::1 at 2016-04-21 14:18:47 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 5]] + Rendered tasklist/show.erb within layouts/application (4.3ms) +Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 0.7ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-21 14:18:56 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-21 14:18:59 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:19:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 14:19:06 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Nap" for ::1 at 2016-04-21 14:19:10 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Nap"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasklist.5" for ::1 at 2016-04-21 14:19:14 -0700 + +ActionController::RoutingError (uninitialized constant TakslistController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + 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 `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259: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 `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: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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.1ms) + + +Started DELETE "/tasklist.22" for ::1 at 2016-04-21 14:20:29 -0700 + +ActionController::RoutingError (uninitialized constant TakslistController): + activesupport (4.2.6) lib/active_support/inflector/methods.rb:261:in `const_get' + 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 `each' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.6) lib/active_support/inflector/methods.rb:259: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 `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: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' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.8ms) + + +Started GET "/" for ::1 at 2016-04-21 14:24:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:24:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:24:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:24:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:24:00 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 14:24:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:24:00 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:24:00 -0700 + + +Started GET "/tasklist/The%20First%20Task" for ::1 at 2016-04-21 14:24:04 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"The First Task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 14:24:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist.1" for ::1 at 2016-04-21 14:24:09 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"z2XcYCskTplxpL9qWf6O9atjpqjcqaUyMIFwES5PNYVgCaxIBrI2/z38kL/drI4BtvBYfDqpWwympAce/mLmwQ=="} +  (0.1ms) begin transaction +  (0.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-21 14:24:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasklist.1" for ::1 at 2016-04-21 14:24:14 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"yQn8R1qSU08EfUa482UHJQH7lWXRT3lsADRuE4rDNPdmZYxvdwQrKUglaW13NwfRHGhrsTdPh1KWERkcWu7nsw=="} +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:24:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/The%20First%20Task" for ::1 at 2016-04-21 14:24:16 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"The First Task"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist.22" for ::1 at 2016-04-21 14:24:21 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"0c39AMCdqANRzHkVKWPa9YG/iqM8N985AK1lbMIEgXd+oY0o7QvQZR2UVsCtMdoBnCx0d9o3IQeWiBJjEilSMw=="} +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:24:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.4ms) + + +Started DELETE "/tasklist.22" for ::1 at 2016-04-21 14:24:35 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"Ph0P6i5OzkW9G5sfskDyMfiMktXLzdo1wkhBWHpn456RcX/CA9i2I/FDtMo2EvLF5R9sAS3NJAtUbTZXqkow2g=="} +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:24:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist.21" for ::1 at 2016-04-21 14:24:42 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"O40Bx+eqCOqO9PEk8+kZHD0dBgjZ8mpdQQyavOPWLTaU4XHvyjxwjMKs3vF3uxnoII743D/ylGPXKe2zM/v+cg=="} +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:24:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist.2" for ::1 at 2016-04-21 14:24:48 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"Y8QWV5zp5FI3nwt8yH2q5fLeJT5uRlSUFQ3hwdNnXffMqGZ/sX+cNHvHJKlML6oR703b6ohGqqqDKJbOA0qOsw=="} +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:24:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasklist.1" for ::1 at 2016-04-21 14:25:09 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"vWmMRZ42rJbDlVqNbUfo43GH+S1w7cvlMDWxQuW7eAISBfxts6DU8I/NdVjpFegXbBQH+ZbtNdumEMZNNZarRg=="} +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:25:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist.1" for ::1 at 2016-04-21 14:25:12 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"9feSD/HjGf00chGXOLNttUsobf3CMbKcrP8a51tec2Ram+In3HVhm3gqPkK84W1BVruTKSQxTKI62m3oi3OgIA=="} +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:25:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist.2" for ::1 at 2016-04-21 14:25:15 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"MdM5kf01l2mzZQXW/c1E+beatXwUn89q5XOgxndYxAyev0m50KPvD/89KgN5n0QNqglLqPKfMVRzVtfJp3UXSA=="} +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:25:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasklist.9" for ::1 at 2016-04-21 14:25:19 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"vlW/rnhuJHMajDlLb8MCzjlT5CRPOedOFlD9wtCkOvEROc+GVfhcFVbUFp7rkQI6JMAa8Kk5GXCAdYrNAInptQ=="} +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:25:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/She%20worries,%20you%20know" for ::1 at 2016-04-21 14:25:20 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"She worries, you know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:25:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 25ms (Views: 22.1ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:25:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:25:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:25:56 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 14:25:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:25:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:25:56 -0700 + + +Started DELETE "/tasklist.1" for ::1 at 2016-04-21 14:25:59 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"WgPpjsJToV1UFhCa3rpolp9xV6xw8wAI0ikljBebhFL1b5mm78XZOxhOP09a6GhiguKpeJbz/jZEDFKDx7ZXFg=="} +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `RailsTaskList' for # +Did you mean? rails_task_lists_url): + app/controllers/tasklist_controller.rb:31:in `delete' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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:26:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 24ms (Views: 21.6ms | ActiveRecord: 0.7ms) + + +Started DELETE "/tasklist.1" for ::1 at 2016-04-21 14:26:37 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"laqpLbhRD4yapuQdh/+0s8bgl+CNqIBlC25yLEYkKvY6xtkFlcd36tb+y8gDrbRH23NpNGuofludSwUjlgn5sg=="} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +ArgumentError (wrong number of arguments (given 0, expected 1)): + app/controllers/tasklist_controller.rb:32:in `delete' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.5ms) + + +Started PUT "/__web_console/repl_sessions/07f5936a9aa8ef7830814781073a51e9" for ::1 at 2016-04-21 14:26:53 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:27:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:27:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:27:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:27:32 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 14:27:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:27:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:27:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:27:32 -0700 + + +Started DELETE "/tasklist.1" for ::1 at 2016-04-21 14:27:34 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"05wARHOsxKIHBZNYSh7Wi3C5zY7SxDYUCHH3+KcFSEp88HBsXjq8xEtdvI3OTNZ/bSozWjTEyCqeVID3dyibDg=="} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +ArgumentError (wrong number of arguments (given 0, expected 1)): + app/controllers/tasklist_controller.rb:32:in `delete' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (55.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.8ms) + + +Started GET "/" for ::1 at 2016-04-21 14:28:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 1.1ms) + + +Started DELETE "/tasklist.2" for ::1 at 2016-04-21 14:28:18 -0700 +Processing by TasklistController#delete as + Parameters: {"authenticity_token"=>"zoNeblcLe3kFwNYtRiHaQEWkjHsKgDsGaBnp6DR9DC5h7y5Gep0DH0mY+fjCc9q0WDdyr+yAxTj+PJ7n5FDfag=="} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" IS NULL ORDER BY "rails_task_lists"."id" ASC LIMIT 1 +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.2ms) + +NoMethodError (undefined method `destroy' for nil:NilClass): + app/controllers/tasklist_controller.rb:32:in `delete' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.5ms) + + +Started DELETE "/tasklist.2" for ::1 at 2016-04-21 14:29:10 -0700 + +ActionController::RoutingError (No route matches [DELETE] "/tasklist.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (63.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.3ms) + + +Started GET "/" for ::1 at 2016-04-21 14:30:16 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (39.4ms) +Completed 500 Internal Server Error in 59ms (ActiveRecord: 0.8ms) + +NoMethodError - undefined method `tasklist_path' for #<#:0x007f81cd099790> +Did you mean? tasklist_new_path: + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb__1570144733103790431_70097703780560' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097703780560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5133492f3ea52431/variables" for ::1 at 2016-04-21 14:30:16 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:30:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (22.8ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `tasklist_path' for #<#:0x007f81cd9e9ae8> +Did you mean? tasklist_new_path: + app/views/tasklist/index.html.erb:11:in `block in _app_views_tasklist_index_html_erb__1570144733103790431_70097703780560' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097703780560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/899216fdcd5229ac/variables" for ::1 at 2016-04-21 14:30:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:32:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 246ms (Views: 244.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:32:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:32:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:32:43 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 14:32:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:32:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:32:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:32:43 -0700 + + +Started DELETE "/tasklist/1" for ::1 at 2016-04-21 14:32:46 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"D8XgtGp/RMom5qVnPhKfX6p9Uah941rEhVnlgSAKDOagqZCcR+k8rGq+irK6QJ+rt+6vfJvjpPoTfJKO8Cffog==", "id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 1]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 13ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 14:32:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/22" for ::1 at 2016-04-21 14:33:04 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"3camW0Zfk1dAAGxCRSWTSQHNzxakVAI68Se7Y57lMMhyqtZza8nrMQxYQ5fBd5O9HF4xwkJU/ARnAsxsTsjjjA==", "id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 22]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-21 14:33:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 39ms (Views: 37.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/21" for ::1 at 2016-04-21 14:33:10 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"THxhESSappvF5fjpgkYSqwPDQkHre4m+2a4ioMkkgATjEBE5CQze/Ym91zwGFBJfHlC8lQ17d4BPi1WvGQlTQA==", "id"=>"21"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 21]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 21]] +  (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:33:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/20" for ::1 at 2016-04-21 14:33:14 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"vM9Fplnc31L54LCLKKhOAx59Y2F+rGf1mWu8uWLHGhsTozWOdEqnNLW4n16s+k73A+6dtZismcsPTsu2surJXw==", "id"=>"20"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 20]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 20]] +  (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:33:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/19" for ::1 at 2016-04-21 14:33:17 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"q1SFuc/PMjClRxKHNlT3b5LeyWnxc5BywFO72ERibGQEOPWR4llKVukfPVKyBvebj003vRdzbkxWdszXlE+/IA==", "id"=>"19"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 19]] +  (0.2ms) begin transaction + SQL (1.4ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 19]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.3ms) + + +Started GET "/" for ::1 at 2016-04-21 14:33:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/18" for ::1 at 2016-04-21 14:33:22 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"2uTzPcpgRhVSymE0cqqNCktPKfR6BpPDbU0hXVUkhlp1iIMV5/Y+cx6STuH2+I3+VtzXIJwGbf37aFZShQlVHg==", "id"=>"18"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 18]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 18]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 14:33:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/17" for ::1 at 2016-04-21 14:33:24 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"7J0RhLspKOzULp4agHAV+iYhn+cqrAYxiX0Gbs+OFCJD8WGslr9Qiph2sc8EIhUOO7JhM8ys+A8fWHFhH6PHZg==", "id"=>"17"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 17]] +  (0.2ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 17]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-21 14:33:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/16" for ::1 at 2016-04-21 14:34:20 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"O+EPzp/ol4DwL46aC7CkteObFAowJkEF7QuI9DHW5U6UjX/msn7v5rx3oU+P4qRB/gjq3tYmvzt7Lv/74fs2Cg==", "id"=>"16"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 16]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 16]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-21 14:34:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 14:34:22 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (24.1ms) +Completed 200 OK in 37ms (Views: 36.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 14:34:25 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"NcTPjObBvNZkuXSCD1LY293Aao7KY2m1pZ8jT6NM3nqaqL+ky1fEsCjhW1eLANgvwFOUWixjl4szulRAc2ENPg==", "rails_task_list"=>{"title"=>"yes yes yes"}, "commit"=>"Create Rails task list"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +TypeError - no implicit conversion of Symbol into Integer: + app/controllers/tasklist_controller.rb:42:in `tasklist_params' + app/controllers/tasklist_controller.rb:20: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0cafc13f83ccafbe/variables" for ::1 at 2016-04-21 14:34:25 -0700 + + +Started POST "/tasklist" for ::1 at 2016-04-21 14:34:40 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"NcTPjObBvNZkuXSCD1LY293Aao7KY2m1pZ8jT6NM3nqaqL+ky1fEsCjhW1eLANgvwFOUWixjl4szulRAc2ENPg==", "rails_task_list"=>{"title"=>"yes yes yes"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "yes yes yes"], ["created_at", "2016-04-21 21:34:40.904528"], ["updated_at", "2016-04-21 21:34:40.904528"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-21 14:34:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:34:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:34:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:34:41 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 14:34:41 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:34:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:34:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:34:41 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 14:34:45 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 14:34:49 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"n6ebmLCuzeXqyN4cMyurldiDIwroEjtQ9b1/dg2rYm0wy+uwnTi1g6aQ8cm3eathxRDd3g4SxW5jmAh53YaxKQ==", "rails_task_list"=>{"title"=>"yes yes yes"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "yes yes yes"], ["created_at", "2016-04-21 21:34:49.189380"], ["updated_at", "2016-04-21 21:34:49.189380"]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for ::1 at 2016-04-21 14:34:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/yes%20yes%20yes" for ::1 at 2016-04-21 14:34:51 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"yes yes yes"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:35:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.5ms) + + +Started DELETE "/tasklist/9" for ::1 at 2016-04-21 14:35:53 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"T9WZJ4x1sU7E3S5MgCJzSlY/4LT3y/85EXOZ2xO800rguekPoePJKIiFAZkEcHO+S6weYBHLAQeHVu7Uw5EADg==", "id"=>"9"} + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 9]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for ::1 at 2016-04-21 14:35:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasklist/10" for ::1 at 2016-04-21 14:35:56 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"8YQ3hNruU/PMWlSbhLWg8BzMXu9QFu+G6w4Up1aSyDFe6Ees93grlYACe04A56AEAV+gO7YWEbh9K2Oohr8bdQ==", "id"=>"10"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 10]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 10]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-21 14:35:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/11" for ::1 at 2016-04-21 14:35:59 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"f1kzDwVITy/2mK8B7vFFQHSSx7HVEIRnaEhNQ+83QQHQNUMnKN43SbrAgNRqo0W0aQE5ZTMQeln+bTpMPxqSRQ==", "id"=>"11"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 11]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 11]] +  (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:35:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/24" for ::1 at 2016-04-21 14:36:02 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"3OSV8ddqp75RO+IRN986Ws/pJuQVoZtIqOKfAPfu5j5ziOXZ+vzf2B1jzcSzjTqu0nrYMPOhZXY+x+gPJ8M1eg==", "id"=>"24"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 24]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 24]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-21 14:36:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasklist/23" for ::1 at 2016-04-21 14:36:05 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"HRWGtmr6AqR6aKLet+S9o8u3RgM2uNll3xMyz5G+/u+yefaeR2x6wjYwjQsztr1X1iS419C4J1tJNkXAQZMtqw==", "id"=>"23"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 23]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 23]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-21 14:36:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/15" for ::1 at 2016-04-21 14:36:14 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"zUTA81Q6uVI+WhRPvZE74tn1xO/Gcob2qOR7j27qYChiKLDbeazBNHICO5o5wzsWxGY6OyByeMg+wQyAvsezbA==", "id"=>"15"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.8ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 15]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.2ms) + + +Started GET "/" for ::1 at 2016-04-21 14:36:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.4ms) + + +Started DELETE "/tasklist/14" for ::1 at 2016-04-21 14:36:17 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"nXrIw4Re1baXoSphWkq3eJ1oLZgKyYsvgPC3yo6B9BkyFrjrqcit0Nv5BbTeGLeMgPvTTOzJdREW1cDFXqwnXQ==", "id"=>"14"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) begin transaction + SQL (0.7ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 14]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-21 14:36:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasklist/13" for ::1 at 2016-04-21 14:36:21 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"ECVjoK/4L+Qt2UdSe9u7+2eQmbNnRzSp3HGmB1mDBgG/SROIgm5XgmGBaIf/ibsPegNnZ4FHypdKVNEIia7VRQ==", "id"=>"13"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 13]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 13]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 14:36:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasklist/12" for ::1 at 2016-04-21 14:36:23 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"ASE5qJ/FgNetZbELsffaHgn9ezrHnDvzWrRsGagIAiuuTUmAslP4seE9nt41pdrqFG6F7iGcxc3MkRsWeCXRbw==", "id"=>"12"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 12]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 12]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-21 14:36:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 14:39:12 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 15.9ms | ActiveRecord: 0.5ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 14:39:21 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rK/RN2P14jj2f7wgT2RrM1FoKpoa6EHSj1qThOW9O1YDw6EfTmOaXronk/XLNmvHTPvUTvzov+wZf+SLNZDoEg==", "rails_task_list"=>{"title"=>"Trip to England"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Trip to England"], ["created_at", "2016-04-21 21:39:21.477419"], ["updated_at", "2016-04-21 21:39:21.477419"]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-21 14:39:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Trip%20to%20England" for ::1 at 2016-04-21 14:39:23 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Trip to England"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 14:48:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.5ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.6ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097717883380' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/532ac4d9f0c5b8f4/variables" for ::1 at 2016-04-21 14:48:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:49:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.5ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.3ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097759555600' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0c9ce5519d9a7650/variables" for ::1 at 2016-04-21 14:49:13 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 14:49:17 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.8ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 14:49:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.6ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097759555600' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b993495ae30076ba/variables" for ::1 at 2016-04-21 14:49:26 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:49:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.4ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.5ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097759555600' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/44e86d240afc8ba8/variables" for ::1 at 2016-04-21 14:49:58 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:50:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.9ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.3ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097759555600' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/57d7bc1e667a680d/variables" for ::1 at 2016-04-21 14:50:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:50:57 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (30.7ms) +Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.5ms) + +NameError - undefined local variable or method `task' for #<#:0x007f81cfa17d60>: + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097755484780' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/eb91cbc0c3e86019/variables" for ::1 at 2016-04-21 14:50:58 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:50:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (25.0ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `task' for #<#:0x007f81d00b6608>: + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097755484780' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/dba00947aa5a3b76/variables" for ::1 at 2016-04-21 14:50:58 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:51:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (29.9ms) +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007f81cd3b9358>: + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097755484780' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e08a5d57a20153de/variables" for ::1 at 2016-04-21 14:51:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:51:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (27.5ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007f81d0219f18>: + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb__1570144733103790431_70097759683700' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/495e621986955523/variables" for ::1 at 2016-04-21 14:51:47 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:52:05 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (43.1ms) +Completed 500 Internal Server Error in 62ms (ActiveRecord: 0.9ms) + +NameError - undefined local variable or method `task' for #<#:0x007f9ee7313098>: + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160230045340' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/46172a15a4f675ad/variables" for ::1 at 2016-04-21 14:52:06 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:52:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (23.2ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007f9ee77b30a8>: + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160230045340' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/808cf560d08005df/variables" for ::1 at 2016-04-21 14:52:07 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:52:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160213707920' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/00e8d1a894deb5c1/variables" for ::1 at 2016-04-21 14:52:46 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:54:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160213707920' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d918962c38ad98f6/variables" for ::1 at 2016-04-21 14:54:25 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:55:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.8ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.3ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160213707920' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1fb7b72d5f707f89/variables" for ::1 at 2016-04-21 14:55:50 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:55:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160213707920' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2b6eb23c2fc2e219/variables" for ::1 at 2016-04-21 14:55:50 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:55:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160213707920' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/03fa1b181d3838ad/variables" for ::1 at 2016-04-21 14:55:51 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:55:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.5ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.3ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160213707920' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1f0ed062ad8399bf/variables" for ::1 at 2016-04-21 14:55:51 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:55:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:19:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160213707920' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6eaf1f29a81a0bb8/variables" for ::1 at 2016-04-21 14:55:51 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:57:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.3ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.3ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:15:in `block in _app_views_tasklist_index_html_erb___4025682496660089853_70160211049180' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160211049180' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/70507c8144a6851f/variables" for ::1 at 2016-04-21 14:57:21 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:57:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:15:in `block in _app_views_tasklist_index_html_erb___4025682496660089853_70160211049180' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160211049180' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3b95e2636e3575ec/variables" for ::1 at 2016-04-21 14:57:22 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:57:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:15:in `block in _app_views_tasklist_index_html_erb___4025682496660089853_70160211049180' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160211049180' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5268a40016d4cf09/variables" for ::1 at 2016-04-21 14:57:22 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:58:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.4ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:16:in `block in _app_views_tasklist_index_html_erb___4025682496660089853_70160211291640' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160211291640' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d09c4da20ad62001/variables" for ::1 at 2016-04-21 14:58:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:58:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:16:in `block in _app_views_tasklist_index_html_erb___4025682496660089853_70160211291640' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160211291640' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9938853f4d8d112e/variables" for ::1 at 2016-04-21 14:58:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:58:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.3ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:16:in `block in _app_views_tasklist_index_html_erb___4025682496660089853_70160211291640' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160211291640' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4532115d37f94640/variables" for ::1 at 2016-04-21 14:58:03 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:58:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"} missing required keys: [:id]: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:280:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:223:in `call' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper' + app/views/tasklist/index.html.erb:16:in `block in _app_views_tasklist_index_html_erb___4025682496660089853_70160211291640' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___4025682496660089853_70160211291640' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ba8225a6c70cfd72/variables" for ::1 at 2016-04-21 14:58:03 -0700 + + +Started GET "/" for ::1 at 2016-04-21 14:58:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 233ms (Views: 232.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:58:37 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 14:58:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:58:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:58:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:58:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:58:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:58:37 -0700 + + +Started GET "/tasklist/25/edit" for ::1 at 2016-04-21 14:58:41 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"25"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] + Rendered tasklist/new.erb within layouts/application (22.4ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007f9ee890e168> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___294242765358297260_70160241653760' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/25/edit" for ::1 at 2016-04-21 14:58:41 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"25"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] + Rendered tasklist/new.erb within layouts/application (27.8ms) +Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007f9ee41f9728> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___294242765358297260_70160242111480' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4fbf41cba5eb6fe2/variables" for ::1 at 2016-04-21 14:58:41 -0700 + + +Started GET "/tasklist/25/edit" for ::1 at 2016-04-21 14:59:21 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"25"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] + Rendered tasklist/new.erb within layouts/application (21.4ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007f9ee5ad8460> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___294242765358297260_70160242111480' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/189df209c2ba2e26/variables" for ::1 at 2016-04-21 14:59:21 -0700 + + +Started GET "/tasklist/25/edit" for ::1 at 2016-04-21 15:07:08 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"25"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] + Rendered tasklist/new.erb within layouts/application (22.3ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007f9ee43112c8> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___294242765358297260_70160242111480' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/98cd151bc53bf268/variables" for ::1 at 2016-04-21 15:07:08 -0700 + + +Started GET "/tasklist/25/edit" for ::1 at 2016-04-21 15:07:37 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"25"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] + Rendered tasklist/new.erb within layouts/application (27.4ms) +Completed 500 Internal Server Error in 67ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007feb86cf7370> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___4022705090077077709_70324777787880' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8f805ef136a925be/variables" for ::1 at 2016-04-21 15:07:37 -0700 + + +Started GET "/tasklist/25/edit" for ::1 at 2016-04-21 15:07:42 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"25"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] + Rendered tasklist/new.erb within layouts/application (21.7ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007feb842d4520> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___4022705090077077709_70324777787880' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2692982869293264/variables" for ::1 at 2016-04-21 15:07:42 -0700 + + +Started GET "/tasklist/22" for ::1 at 2016-04-21 15:07:48 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 22]] + Rendered tasklist/show.erb within layouts/application (1.9ms) +Completed 200 OK in 341ms (Views: 339.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 15:07:49 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (23.4ms) + Rendered /Users/sakne/.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/sakne/.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 (134.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (62.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (157.1ms) + + +Started GET "/" for ::1 at 2016-04-21 15:07:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-21 15:07:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 40ms (Views: 39.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 15:07:53 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (38.6ms) +Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007feb84954508> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___4022705090077077709_70324767963320' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 15:07:53 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (26.8ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007feb8a853a18> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___4022705090077077709_70324777787880' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2c236ff549b49e15/variables" for ::1 at 2016-04-21 15:07:53 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:09:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:09:05 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (32.2ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007feb84bab338> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___4022705090077077709_70324767963320' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:09:05 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (22.7ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007feb844b45c0> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___4022705090077077709_70324777787880' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2490a39bccbf12b8/variables" for ::1 at 2016-04-21 15:09:05 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:12:39 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (35.2ms) +Completed 500 Internal Server Error in 48ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007feb8811a9d8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___4022705090077077709_70324777787880' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/97dc0fea658b384b/variables" for ::1 at 2016-04-21 15:12:39 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:12:39 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (31.0ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007feb8a8b8008> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___4022705090077077709_70324777787880' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7f34ea80a51e9c80/variables" for ::1 at 2016-04-21 15:12:40 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:15:58 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (7.7ms) +Completed 200 OK in 30ms (Views: 24.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 15:15:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:15:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:15:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:15:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:15:58 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 15:15:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:15:58 -0700 + + +Started PATCH "/tasklist.5" for ::1 at 2016-04-21 15:16:00 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasklist.5"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.6ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 15:16:39 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (25.2ms) +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007feb8a1eb838> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___4022705090077077709_70324777787880' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ed2e239d8636ea78/variables" for ::1 at 2016-04-21 15:16:39 -0700 + + +Started GET "/task" for ::1 at 2016-04-21 15:16:40 -0700 + +ActionController::RoutingError (No route matches [GET] "/task"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/sakne/.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 (78.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.5ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 15:16:40 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (21.1ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007feb84b1c610> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___4022705090077077709_70324777787880' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5f0fd41bf09e2b25/variables" for ::1 at 2016-04-21 15:16:40 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 15:16:40 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) + Rendered /Users/sakne/.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/sakne/.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 (85.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.3ms) + + +Started GET "/" for ::1 at 2016-04-21 15:16:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 15:16:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 15:16:43 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist.2" for ::1 at 2016-04-21 15:16:47 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasklist.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.0ms) + + +Started GET "/" for ::1 at 2016-04-21 15:17:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/7/edit" for ::1 at 2016-04-21 15:17:46 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"7"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasklist/new.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist.7" for ::1 at 2016-04-21 15:17:48 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasklist.7"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.8ms) + + +Started GET "/tasklist/7/edit" for ::1 at 2016-04-21 15:18:30 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"7"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasklist/new.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist.7" for ::1 at 2016-04-21 15:26:04 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasklist.7"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (63.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.1ms) + + +Started GET "/tasklist/7/edit" for ::1 at 2016-04-21 15:28:42 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"7"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasklist/new.erb within layouts/application (17.8ms) +Completed 200 OK in 295ms (Views: 274.7ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 15:28:42 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 15:28:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:28:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:28:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:28:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:28:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:28:42 -0700 + + +Started PATCH "/tasklist.7" for ::1 at 2016-04-21 15:28:43 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasklist.7"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) + Rendered /Users/sakne/.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/sakne/.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 (96.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (94.7ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (3.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (182.9ms) + + +Started GET "/tasklist/7/edit" for ::1 at 2016-04-21 15:33:20 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"7"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasklist/new.erb within layouts/application (31.4ms) +Completed 500 Internal Server Error in 46ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffc36691628> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360613976680' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/7/edit" for ::1 at 2016-04-21 15:33:20 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"7"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasklist/new.erb within layouts/application (30.7ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffc3651bdc0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360577224000' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/05b16dbcefb3a933/variables" for ::1 at 2016-04-21 15:33:21 -0700 + + +Started GET "/tasklist/7/edit" for ::1 at 2016-04-21 15:33:23 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"7"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasklist/new.erb within layouts/application (22.3ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffc389ed810> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360577224000' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f84985ed27a675f5/variables" for ::1 at 2016-04-21 15:33:24 -0700 + + +Started GET "/tasklist/7/edit" for ::1 at 2016-04-21 15:33:24 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"7"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasklist/new.erb within layouts/application (22.3ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffc38a99a48> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360577224000' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fbf6afe866edcfcc/variables" for ::1 at 2016-04-21 15:33:24 -0700 + + +Started GET "/tasklist/7/edit" for ::1 at 2016-04-21 15:33:25 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"7"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasklist/new.erb within layouts/application (20.9ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffc388589c8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360577224000' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d9b428e9e3515a2c/variables" for ::1 at 2016-04-21 15:33:25 -0700 + + +Started GET "/tasklist/7/edit" for ::1 at 2016-04-21 15:33:49 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist/7/edit"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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-21 15:33:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (30.6ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.7ms) + +NoMethodError - undefined method `edit_tasklist_path' for #<#:0x007ffc326f7148> +Did you mean? edit_rails_task_list_path: + app/views/tasklist/index.html.erb:16:in `block in _app_views_tasklist_index_html_erb___2350529300334384981_70360577289860' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2350529300334384981_70360577289860' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/66d7e296c190e51d/variables" for ::1 at 2016-04-21 15:33:58 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:39:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (6.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (34.4ms) +Completed 500 Internal Server Error in 41ms (ActiveRecord: 6.8ms) + +NoMethodError - undefined method `edit_tasklist_path' for #<#:0x007ffc3981c940>: + app/views/tasklist/index.html.erb:16:in `block in _app_views_tasklist_index_html_erb___2350529300334384981_70360577289860' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___2350529300334384981_70360577289860' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b9ffa98d5312be06/variables" for ::1 at 2016-04-21 15:39:34 -0700 + + +Started GET "/" for ::1 at 2016-04-21 15:39:54 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 15:39:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:39:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:39:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:39:54 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 15:39:54 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:39:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:39:54 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:40:00 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (2.1ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasklist.5" for ::1 at 2016-04-21 15:40:03 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasklist.5"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.0ms) + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:40:23 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (2.7ms) +Completed 200 OK in 34ms (Views: 32.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:40:30 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 15:40:30 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 15:40:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:40:30 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:40:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:40:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:40:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:40:30 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:40:33 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (1.2ms) +Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 15:40:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:40:33 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 15:40:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:40:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:40:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:40:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:40:33 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:41:15 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (3.9ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +RuntimeError - : + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360628896980' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a7455f725613e553/variables" for ::1 at 2016-04-21 15:41:15 -0700 + + +Started POST "/__better_errors/a7455f725613e553/eval" for ::1 at 2016-04-21 15:42:18 -0700 + + +Started POST "/__better_errors/a7455f725613e553/eval" for ::1 at 2016-04-21 15:42:28 -0700 + + +Started POST "/__better_errors/a7455f725613e553/eval" for ::1 at 2016-04-21 15:42:34 -0700 + + +Started POST "/__better_errors/a7455f725613e553/eval" for ::1 at 2016-04-21 15:42:49 -0700 + + +Started POST "/__better_errors/a7455f725613e553/eval" for ::1 at 2016-04-21 15:43:14 -0700 + + +Started POST "/__better_errors/a7455f725613e553/eval" for ::1 at 2016-04-21 15:43:28 -0700 + + +Started POST "/__better_errors/a7455f725613e553/eval" for ::1 at 2016-04-21 15:43:33 -0700 + + +Started POST "/__better_errors/a7455f725613e553/eval" for ::1 at 2016-04-21 15:43:40 -0700 + + +Started POST "/__better_errors/a7455f725613e553/eval" for ::1 at 2016-04-21 15:43:45 -0700 + + +Started POST "/__better_errors/a7455f725613e553/eval" for ::1 at 2016-04-21 15:43:50 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:44:11 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (1.8ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.5ms) + +RuntimeError - : + app/views/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360628896980' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d1edf95d55c67413/variables" for ::1 at 2016-04-21 15:44:11 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 15:44:18 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 15:44:18 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 15:44:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:44:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:44:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:44:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:44:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:44:18 -0700 + + +Started PATCH "/tasklist.5" for ::1 at 2016-04-21 15:44:19 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DFxfMyU6kNktiu3gjTZJkNGl+FZN3aWwhy0D2Wr6kyujMC8bCKzov2HSwjUJZElkzDYGgqvdW44RCHTWutdAbw==", "rails_task_list"=>{"title"=>"Play Video Games"}, "commit"=>"Update Rails task list", "id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.0ms) rollback transaction +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:22: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/dd03957a0e82eaea/variables" for ::1 at 2016-04-21 15:44:19 -0700 + + +Started PATCH "/tasklist.5" for ::1 at 2016-04-21 15:45:11 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DFxfMyU6kNktiu3gjTZJkNGl+FZN3aWwhy0D2Wr6kyujMC8bCKzov2HSwjUJZElkzDYGgqvdW44RCHTWutdAbw==", "rails_task_list"=>{"title"=>"Play Video Games"}, "commit"=>"Update Rails task list", "id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.1ms) rollback transaction +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.7ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:22: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5fc6acae05e6830a/variables" for ::1 at 2016-04-21 15:45:11 -0700 + + +Started POST "/__better_errors/5fc6acae05e6830a/eval" for ::1 at 2016-04-21 15:45:18 -0700 +Unpermitted parameters: utf8, _method, authenticity_token, commit, id + + +Started POST "/__better_errors/5fc6acae05e6830a/eval" for ::1 at 2016-04-21 15:45:31 -0700 + + +Started POST "/__better_errors/5fc6acae05e6830a/eval" for ::1 at 2016-04-21 15:45:56 -0700 +Unpermitted parameters: utf8, _method, authenticity_token, commit, id + + +Started POST "/__better_errors/5fc6acae05e6830a/eval" for ::1 at 2016-04-21 15:46:19 -0700 +Unpermitted parameters: utf8, _method, authenticity_token, commit, id + + +Started PATCH "/tasklist.5" for ::1 at 2016-04-21 15:46:47 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DFxfMyU6kNktiu3gjTZJkNGl+FZN3aWwhy0D2Wr6kyujMC8bCKzov2HSwjUJZElkzDYGgqvdW44RCHTWutdAbw==", "rails_task_list"=>{"title"=>"Play Video Games"}, "commit"=>"Update Rails task list", "id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasklist.5 +Completed 302 Found in 10ms (ActiveRecord: 0.6ms) + + +Started GET "/tasklist.5" for ::1 at 2016-04-21 15:46:48 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 15:46:48 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 15:46:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 15:46:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 15:46:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 15:46:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 15:46:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 15:46:48 -0700 + + +Started GET "/tasklist/Go%20to%20Second%20Lunch" for ::1 at 2016-04-21 15:46:51 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Second Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/4/edit" for ::1 at 2016-04-21 15:46:58 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/new.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist.4" for ::1 at 2016-04-21 15:47:02 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"I2RpbUCjriShcCRXEpPKDvBiPjHdQQv8Z2+tUxLnfhSMCBlFbTXWQu0oC4KWwcr67fHA5TtB9cLxStpcwsqtUA==", "rails_task_list"=>{"title"=>"Go to Second Lunch Again"}, "commit"=>"Update Rails task list", "id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "rails_task_lists" SET "title" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["title", "Go to Second Lunch Again"], ["updated_at", "2016-04-21 22:47:02.786358"], ["id", 4]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasklist.4 +Completed 302 Found in 6ms (ActiveRecord: 1.4ms) + + +Started GET "/tasklist.4" for ::1 at 2016-04-21 15:47:02 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 29ms (Views: 28.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/25/edit" for ::1 at 2016-04-21 15:49:44 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"25"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist.25" for ::1 at 2016-04-21 15:49:50 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"saYsnkcRF5ytUB4KEG2Mj2IDLTH+8No4kbxWOsJPA4Yeyly2aodv+uEIMd+UP4x7f5DT5RjwJAYHmSE1EmLQwg==", "rails_task_list"=>{"title"=>"Trip to England Today !!!!!!"}, "commit"=>"Update Rails task list", "id"=>"25"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "rails_task_lists" SET "title" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["title", "Trip to England Today !!!!!!"], ["updated_at", "2016-04-21 22:49:50.927700"], ["id", 25]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasklist.25 +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/tasklist.25" for ::1 at 2016-04-21 15:49:50 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Lunch" for ::1 at 2016-04-21 15:57:32 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 27ms (Views: 23.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 15:57:37 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 15:57:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Plant%20Flowers" for ::1 at 2016-04-21 15:57:41 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Trip%20to%20England%20Today%20!!!!!!" for ::1 at 2016-04-21 15:57:50 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Trip to England Today !!!!!!"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 15:57:53 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Play%20Video%20Games" for ::1 at 2016-04-21 15:58:00 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 15:58:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/Plant%20Flowers" for ::1 at 2016-04-21 15:58:06 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Plant Flowers"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 15:58:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Second%20Lunch%20Again" for ::1 at 2016-04-21 15:58:41 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Second Lunch Again"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.5ms) +Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 15:58:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 16:02:04 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist.3" for ::1 at 2016-04-21 16:02:10 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7QUVMWxzBnNl/e008ocJpjRY3oer9w1zGeb6+lUvU/JCaWUZQeV+FSmlwuF21QlSKcsgU033802Pw431hQKAtg==", "rails_task_list"=>{"title"=>"Go to Lunch today"}, "commit"=>"Update Rails task list", "id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "rails_task_lists" SET "title" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["title", "Go to Lunch today"], ["updated_at", "2016-04-21 23:02:10.210305"], ["id", 3]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasklist.3 +Completed 302 Found in 5ms (ActiveRecord: 1.1ms) + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:02:10 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 16:02:13 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 16:04:56 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:04:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:04:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:04:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:04:56 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:04:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:04:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:04:56 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:04:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 16:05:55 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist/tasklist/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (67.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.8ms) + + +Started GET "/tasklist/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 16:06:00 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist/tasklist/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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.8ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:06:10 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:06:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:06:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:06:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:06:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:06:10 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:06:10 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 16:06:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 16:06:19 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.5ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/4/edit" for ::1 at 2016-04-21 16:06:29 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Trip%20to%20England%20Today%20!!!!!!" for ::1 at 2016-04-21 16:06:38 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Trip to England Today !!!!!!"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:06:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:06:45 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (21.4ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffc36549540> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360609742140' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:06:45 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.3ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffc36f44f40> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360609390900' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/66075f00f1b4d1ff/variables" for ::1 at 2016-04-21 16:06:45 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:06:52 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.3ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffc36db7100> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360609390900' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2d96db3cc349fe3a/variables" for ::1 at 2016-04-21 16:06:52 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:06:53 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.4ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffc343fc608> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3528465731093316957_70360609390900' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3035c7a743976416/variables" for ::1 at 2016-04-21 16:06:53 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:07:34 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (23.4ms) +Completed 500 Internal Server Error in 52ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda61d27d8> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363695062560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:07:35 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (22.6ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda34a1610> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/20fc8a0386e04829/variables" for ::1 at 2016-04-21 16:07:35 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:08:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 201ms (Views: 200.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:08:10 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (38.8ms) +Completed 500 Internal Server Error in 43ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda3569458> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363695062560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:08:10 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.4ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda701bc68> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6c59a23384021f45/variables" for ::1 at 2016-04-21 16:08:10 -0700 + + +Started GET "/tasklist/Play%20Video%20Games" for ::1 at 2016-04-21 16:08:21 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Play Video Games"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (5.7ms) +Completed 200 OK in 24ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/25/edit" for ::1 at 2016-04-21 16:08:34 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"25"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] + Rendered tasklist/new.erb within layouts/application (14.5ms) +Completed 200 OK in 29ms (Views: 26.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasklist.25" for ::1 at 2016-04-21 16:08:36 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"XQ/m5S9gSxCGg+Mn9f6cn6/ZvAxrQLZbCSWqoVh9DXjyY5bNAvYzdsrbzPJxrJxrskpC2I1ASGWfAN2uiFDePA==", "rails_task_list"=>{"title"=>"Trip to England Today !!!!!!"}, "commit"=>"Update Rails task list", "id"=>"25"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasklist.25 +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/tasklist.25" for ::1 at 2016-04-21 16:08:36 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:08:50 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (18.1ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda91174d0> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363695062560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:08:50 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (18.5ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda93113f8> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/67e94c99f9d279e0/variables" for ::1 at 2016-04-21 16:08:50 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:11:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:11:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:11:51 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.2ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda22d5c60> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363695062560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:11:51 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.3ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda2d39080> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6066bf78c21460f7/variables" for ::1 at 2016-04-21 16:11:51 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:15:21 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.7ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda926c790> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5327e25e61b77136/variables" for ::1 at 2016-04-21 16:15:21 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:15:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:15:33 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:15:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:15:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:15:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:15:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:15:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:15:33 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:15:37 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.1ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda71098c8> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363695062560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:15:37 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (17.2ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda22407c8> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/aa91dadc06f9dc52/variables" for ::1 at 2016-04-21 16:15:37 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:17:28 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (26.3ms) +Completed 500 Internal Server Error in 45ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda93b83b0> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/df97c482ce2ff80d/variables" for ::1 at 2016-04-21 16:17:28 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:17:32 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.9ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8d11340> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2dc5d87de1c90b80/variables" for ::1 at 2016-04-21 16:17:32 -0700 + + +Started GET "/tasklist" for ::1 at 2016-04-21 16:17:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:17:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:17:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 16:17:40 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist.3" for ::1 at 2016-04-21 16:17:41 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasklist.3"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) + Rendered /Users/sakne/.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 (79.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.0ms) + + +Started GET "/tasklist.1" for ::1 at 2016-04-21 16:18:20 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (10.7ms) +Completed 200 OK in 56ms (Views: 53.5ms | ActiveRecord: 0.9ms) + + +Started GET "/tasklist" for ::1 at 2016-04-21 16:18:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:18:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:18:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:18:28 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.9ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda93e9230> +Did you mean? rails_task_list_path_url + rails_task_list_path_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363695062560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:18:28 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (18.8ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda7751348> +Did you mean? rails_task_list_path_url + rails_task_list_path_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/534ca3b29dcc11d7/variables" for ::1 at 2016-04-21 16:18:28 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:18:56 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (33.7ms) +Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda63490d0> +Did you mean? rails_task_list_path_path_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cf81b96c4ee842a4/variables" for ::1 at 2016-04-21 16:18:56 -0700 + + +Started GET "/task" for ::1 at 2016-04-21 16:18:57 -0700 + +ActionController::RoutingError (No route matches [GET] "/task"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) + Rendered /Users/sakne/.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 (130.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.6ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:18:57 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (22.3ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda93e0888> +Did you mean? rails_task_list_path_path_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/747e84bf04a42d32/variables" for ::1 at 2016-04-21 16:18:57 -0700 + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-21 16:18:58 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (64.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (149.0ms) + + +Started GET "/" for ::1 at 2016-04-21 16:18:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:18:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 16:19:00 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (25.0ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda74876d0> +Did you mean? rails_task_list_path_path_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363695062560' + 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/sakne/.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/tasklist_controller.rb:22: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 16:19:01 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (27.5ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda2bf78e8> +Did you mean? rails_task_list_path_path_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/tasklist_controller.rb:22: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d31aa0ae45642f2c/variables" for ::1 at 2016-04-21 16:19:01 -0700 + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 16:19:32 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 31ms (Views: 25.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:19:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:19:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:19:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:19:32 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:19:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:19:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:19:32 -0700 + + +Started PATCH "/tasklist.3" for ::1 at 2016-04-21 16:19:34 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"zYGNtTX38KyTRgiDXzIHX013+I4xbCUVqqNYsNSehGpi7f2dGGGIyt8eJ1bbYAerUOQGWtds2ys8hi+/BLNXLg==", "rails_task_list"=>{"title"=>"Go to Lunch today"}, "commit"=>"Update Rails task list", "id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasklist.3 +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:19:34 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:19:36 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.9ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda894a400> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363695062560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:19:36 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.1ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda75bf598> +Did you mean? rails_task_list_path + rails_task_list_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c0d271a4f254aee8/variables" for ::1 at 2016-04-21 16:19:36 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:20:52 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 44ms (Views: 42.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:20:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:20:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:20:52 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:20:52 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:20:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:20:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:20:52 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:20:54 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.8ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda93b1538> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363695062560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:20:54 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.4ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8dfa248> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4f0193cc6150868d/variables" for ::1 at 2016-04-21 16:20:54 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:22:07 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (18.8ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda66288c8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a5c2668e3b49a789/variables" for ::1 at 2016-04-21 16:22:07 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:22:11 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 35ms (Views: 34.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:22:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:22:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:22:11 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:22:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:22:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:22:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:22:11 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:22:14 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.3ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda220ee58> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363695062560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:22:14 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.3ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8cbb300> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1d5d4307d921646b/variables" for ::1 at 2016-04-21 16:22:14 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:22:45 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.1ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda887c348> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a3dc041912472e51/variables" for ::1 at 2016-04-21 16:22:45 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:23:50 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:23:50 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:23:50 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:23:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:23:50 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:23:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:23:50 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:23:50 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:24:53 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:24:53 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:24:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:24:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:24:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:24:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:24:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:24:53 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:27:11 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:27:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:27:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:27:11 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:27:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:27:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:27:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:27:11 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:27:26 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:27:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:27:26 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:27:26 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:27:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:27:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:27:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:27:26 -0700 + + +Started POST "/tasklist/new" for ::1 at 2016-04-21 16:27:27 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasklist/new"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.7ms) + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:28:04 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (24.5ms) +Completed 500 Internal Server Error in 40ms (ActiveRecord: 0.5ms) + +ActionController::UrlGenerationError - No route matches {:action=>"completed", :controller=>"tasklist", :format=>"3"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363665742560' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363665742560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:28:04 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (10.7ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"completed", :controller=>"tasklist", :format=>"3"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363665742560' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363665742560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ed464e7760476051/variables" for ::1 at 2016-04-21 16:28:04 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:28:06 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (12.0ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.3ms) + +ActionController::UrlGenerationError - No route matches {:action=>"completed", :controller=>"tasklist", :format=>"3"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363665742560' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363665742560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/38f03cea26776c9f/variables" for ::1 at 2016-04-21 16:28:06 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-21 16:32:24 -0700 + +ArgumentError - Missing :controller key on routes definition, please check your routes.: + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:275:in `check_part' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:255:in `check_controller_and_action' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:178:in `normalize_options!' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:100:in `initialize' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:78:in `build' + actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:1560: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:659:in `post' + config/routes.rb:21: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/64d35b287b8de60f/variables" for ::1 at 2016-04-21 16:32:24 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:32:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.0ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"completed", :controller=>"tasklist"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363706112700' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363706112700' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.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:32:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"completed", :controller=>"tasklist"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363696356520' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363696356520' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4ea3b40d4c5c3488/variables" for ::1 at 2016-04-21 16:32:28 -0700 + + +Started POST "/__better_errors/4ea3b40d4c5c3488/variables" for ::1 at 2016-04-21 16:32:44 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:32:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.7ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.5ms) + +ActionController::UrlGenerationError - No route matches {:action=>"completed", :controller=>"tasklist"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363696356520' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363696356520' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/13fe927503bebce8/variables" for ::1 at 2016-04-21 16:32:46 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:32:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"completed", :controller=>"tasklist"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363696356520' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363696356520' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4535c9a8a8e9c7a4/variables" for ::1 at 2016-04-21 16:32:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:32:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.0ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"completed", :controller=>"tasklist"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363696356520' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363696356520' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/73df69135faa5af0/variables" for ::1 at 2016-04-21 16:32:49 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:33:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (12.0ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:33:16 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:33:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:33:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:33:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:33:16 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:33:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:33:16 -0700 + + +Started POST "/tasklist/new" for ::1 at 2016-04-21 16:33:19 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasklist/new"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (63.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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-21 16:33:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:33:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.4ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit", :controller=>"tasklist"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363660774620' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363660774620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7e0adb347da33c2e/variables" for ::1 at 2016-04-21 16:33:45 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:34:27 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.6ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit/2", :controller=>"tasklist"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363718075280' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363718075280' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/99a7d4ebf0756356/variables" for ::1 at 2016-04-21 16:34:28 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:34:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.7ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) + +ActionController::UrlGenerationError - No route matches {:action=>"edit/2", :controller=>"tasklist"}: + actionpack (4.2.6) lib/action_dispatch/journey/formatter.rb:46:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:721:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:752:in `generate' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:799:in `url_for' + actionpack (4.2.6) lib/action_dispatch/routing/url_for.rb:156:in `url_for' + actionview (4.2.6) lib/action_view/routing_url_for.rb:94:in `url_for' + turbolinks (2.5.3) lib/turbolinks/xhr_url_for.rb:12:in `url_for_with_xhr_referer' + actionview (4.2.6) lib/action_view/helpers/url_helper.rb:287:in `button_to' + app/views/tasklist/index.html.erb:17:in `block in _app_views_tasklist_index_html_erb___1933030806329106197_70363718075280' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:5:in `_app_views_tasklist_index_html_erb___1933030806329106197_70363718075280' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b6c71642dbdbfe7c/variables" for ::1 at 2016-04-21 16:34:31 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:35:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:35:28 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:35:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:35:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:35:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:35:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:35:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:35:28 -0700 + + +Started POST "/tasklist/new" for ::1 at 2016-04-21 16:35:29 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasklist/new"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (63.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.9ms) + + +Started GET "/" for ::1 at 2016-04-21 16:35:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 16:36:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:36:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:36:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:36:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:36:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:36:58 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:36:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:36:58 -0700 + + +Started POST "/tasklist/2/edit" for ::1 at 2016-04-21 16:37:00 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasklist/2/edit"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.3ms) + + +Started GET "/" for ::1 at 2016-04-21 16:37:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 16:37:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:37:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:37:50 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:37:50 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:37:50 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:37:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:37:50 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:37:50 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:37:51 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (25.2ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8ac8700> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/tasklist_controller.rb:23: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f310ef0b4152ea65/variables" for ::1 at 2016-04-21 16:37:51 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:39:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:39:47 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (23.0ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda67f38b0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363671484240' + 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/sakne/.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/tasklist_controller.rb:23: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/86b985e061d438b4/variables" for ::1 at 2016-04-21 16:39:47 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:42:52 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.7ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda35ca6e0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:23: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/db2a34598bc620e3/variables" for ::1 at 2016-04-21 16:42:52 -0700 + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 16:42:56 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (23.2ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8c276f0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:23: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1e37cd3f66bfd767/variables" for ::1 at 2016-04-21 16:42:56 -0700 + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 16:42:59 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (22.2ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8c6ff40> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:23: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a912490148dd227e/variables" for ::1 at 2016-04-21 16:42:59 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:43:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:43:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:43:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:43:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:43:02 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:43:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:43:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:43:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:43:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:43:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:43:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:43:03 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:43:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:43:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:43:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:43:03 -0700 + + +Started PUT "/tasklist/2" for ::1 at 2016-04-21 16:43:04 -0700 +Processing by TasklistController#update as HTML + Parameters: {"authenticity_token"=>"oqxYCNZLBfRf1/T4/4uGvNR6UwPaOBqQe7C8vkluogQNwCgg+919khOP2y172YZIyemt1zw45K7tlcuxmUNxQA==", "id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: _method, authenticity_token, id +  (0.1ms) begin transaction +  (0.1ms) rollback transaction +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.3ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:28: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6cd9a3fab4952fe5/variables" for ::1 at 2016-04-21 16:43:04 -0700 + + +Started POST "/__better_errors/6cd9a3fab4952fe5/eval" for ::1 at 2016-04-21 16:43:30 -0700 +Unpermitted parameters: _method, authenticity_token, id + + +Started GET "/" for ::1 at 2016-04-21 16:44:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.8ms) +Completed 200 OK in 24ms (Views: 21.6ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-21 16:44:27 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:44:27 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:44:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:44:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:44:27 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:44:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:44:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:44:27 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:44:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:44:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:44:28 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:44:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:44:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:44:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:44:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:44:28 -0700 + + +Started PUT "/tasklist/2" for ::1 at 2016-04-21 16:44:29 -0700 +Processing by TasklistController#update as HTML + Parameters: {"authenticity_token"=>"VBHzYBx9ylodbvPHimXQYvEKgeBURZ9v6aDHPRWdR8T7fYNIMeuyPFE23BION9CW7Jl/NLJFYVF/hbAyxbCUgA==", "id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: _method, authenticity_token, id +  (0.1ms) begin transaction +  (0.0ms) rollback transaction +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:28: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/256920b4ab395989/variables" for ::1 at 2016-04-21 16:44:29 -0700 + + +Started POST "/__better_errors/256920b4ab395989/eval" for ::1 at 2016-04-21 16:44:36 -0700 +Unpermitted parameters: _method, authenticity_token, id + + +Started GET "/" for ::1 at 2016-04-21 16:45:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:45:17 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.8ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8cfc828> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:45:17 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.0ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8b662c0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/04739c741b3bf40b/variables" for ::1 at 2016-04-21 16:45:17 -0700 + + +Started PUT "/tasklist/3" for ::1 at 2016-04-21 16:45:26 -0700 +Processing by TasklistController#update as HTML + Parameters: {"authenticity_token"=>"/1d8bscZl9oMaXXxe8L/Wcn0CcYtSl3QWy6zkn08oKhQOwxG6o/vvEAxWiT/kP+t1Gf3EstKo+7NC8SdrRFz7A==", "id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] +Unpermitted parameters: _method, authenticity_token, id +  (0.1ms) begin transaction +  (0.0ms) rollback transaction +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:28: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/40b7b43db8159319/variables" for ::1 at 2016-04-21 16:45:26 -0700 + + +Started PUT "/tasklist/2" for ::1 at 2016-04-21 16:45:33 -0700 +Processing by TasklistController#update as HTML + Parameters: {"authenticity_token"=>"/1d8bscZl9oMaXXxe8L/Wcn0CcYtSl3QWy6zkn08oKhQOwxG6o/vvEAxWiT/kP+t1Gf3EstKo+7NC8SdrRFz7A==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: _method, authenticity_token, id +  (0.1ms) begin transaction +  (0.0ms) rollback transaction +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:28: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b5da5b62269a8758/variables" for ::1 at 2016-04-21 16:45:33 -0700 + + +Started PUT "/tasklist/3" for ::1 at 2016-04-21 16:50:13 -0700 +Processing by TasklistController#update as HTML + Parameters: {"authenticity_token"=>"/1d8bscZl9oMaXXxe8L/Wcn0CcYtSl3QWy6zkn08oKhQOwxG6o/vvEAxWiT/kP+t1Gf3EstKo+7NC8SdrRFz7A==", "id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] +Unpermitted parameters: _method, authenticity_token, id +  (0.0ms) begin transaction +  (0.0ms) rollback transaction +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:28: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b1bc3174a3f992f0/variables" for ::1 at 2016-04-21 16:50:13 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:50:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:50:16 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.4ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda2281110> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/tasklist_controller.rb:23: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:50:16 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (25.1ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8ada4c8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:23: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fd56d805e2b90122/variables" for ::1 at 2016-04-21 16:50:16 -0700 + + +Started PUT "/tasklist/2" for ::1 at 2016-04-21 16:50:57 -0700 +Processing by TasklistController#update as HTML + Parameters: {"authenticity_token"=>"+gqQrJ7YQKzsejPuT7GJKrrSKCQZr0eNXM77e71kKhxVZuCEs044yqAiHDvL44nep0HW8P+vubPK64x0bUn5WA==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: _method, authenticity_token, id +  (0.1ms) begin transaction +  (0.1ms) rollback transaction +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.6ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:22: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/977224b5ed13b9d7/variables" for ::1 at 2016-04-21 16:50:57 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:50:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:50:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:50:59 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:50:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:50:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:50:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:50:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:50:59 -0700 + + +Started PUT "/tasklist/2" for ::1 at 2016-04-21 16:51:02 -0700 +Processing by TasklistController#update as HTML + Parameters: {"authenticity_token"=>"2LeJshFgRPM9YmFX887Id2lG6comBOup4ASOzbpoaqF32/maPPY8lXE6ToJ3nMiDdNUXHsAEFZd2IfnCakW55Q==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: _method, authenticity_token, id +  (0.1ms) begin transaction +  (0.0ms) rollback transaction +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:22: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5c09020446d52377/variables" for ::1 at 2016-04-21 16:51:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:51:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:51:04 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.7ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda22d7010> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:51:04 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (21.8ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda22dd7f8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e6dd740d5f6f8a02/variables" for ::1 at 2016-04-21 16:51:04 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:51:07 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (21.4ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda887d630> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c6c3b4886aee7b3d/variables" for ::1 at 2016-04-21 16:51:07 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:51:08 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (23.0ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda2ff1480> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c067959facdd7ec8/variables" for ::1 at 2016-04-21 16:51:08 -0700 + + +Started DELETE "/tasklist/7" for ::1 at 2016-04-21 16:51:21 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"7NwmDYskIi0rNZhEk4rMMY8B+oN7U4a5Q+3KsjBeh3tDsFYlprJaS2dtt5EX2MzFkpIEV51TeIfVyL294HNUPw==", "id"=>"7"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 7]] +  (0.1ms) begin transaction + SQL (0.5ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 7]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-21 16:51:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:51:24 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.9ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda908b3b8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:51:24 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (23.3ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda6380148> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fb778b5f473a45e6/variables" for ::1 at 2016-04-21 16:51:24 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:52:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 33ms (Views: 28.7ms | ActiveRecord: 1.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:52:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:52:51 -0700 + + +Started GET "/tasklist/8/edit" for ::1 at 2016-04-21 16:52:53 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasklist/new.erb within layouts/application (24.0ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8af9d28> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/8/edit" for ::1 at 2016-04-21 16:52:53 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasklist/new.erb within layouts/application (23.5ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda9517530> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e9bbd52f78196ca7/variables" for ::1 at 2016-04-21 16:52:53 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:52:57 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.5ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda65f8f60> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:52:57 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.4ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda71ab9c0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ca13bb236aa4b529/variables" for ::1 at 2016-04-21 16:52:57 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 16:53:31 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (21.3ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8a70258> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 16:53:31 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (21.5ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda9248c78> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/98eb3cef8d7a0cdf/variables" for ::1 at 2016-04-21 16:53:31 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 16:54:47 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist/5/edit"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.7ms) + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 16:54:55 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (24.7ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda76df4f0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7477a6297962c3c8/variables" for ::1 at 2016-04-21 16:54:55 -0700 + + +Started POST "/__better_errors/7477a6297962c3c8/eval" for ::1 at 2016-04-21 16:55:04 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:55:48 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (23.3ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda2af69f8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:55:48 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.0ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda92b32f8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7fc7725dc6fe8962/variables" for ::1 at 2016-04-21 16:55:48 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 16:56:38 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:56:45 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (24.7ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda9246bf8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:56:45 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (20.8ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda887edf0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f0f40815e87155ff/variables" for ::1 at 2016-04-21 16:56:45 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:56:49 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (21.0ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda70a1200> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:56:49 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.1ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8cb82b8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ec45a1529cefee5f/variables" for ::1 at 2016-04-21 16:56:49 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:57:31 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.4ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda90a6d70> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ead0c49689d872b6/variables" for ::1 at 2016-04-21 16:57:31 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:57:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:57:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:57:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:57:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:57:37 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:57:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:57:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:57:37 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:57:38 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.5ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda7477168> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:57:38 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (21.7ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda3452380> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7bcbc08893771ed9/variables" for ::1 at 2016-04-21 16:57:38 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:58:02 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.8ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda4132b68> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d494142d42cbe56e/variables" for ::1 at 2016-04-21 16:58:02 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 16:58:03 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.2ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8a38178> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/07974546950cae90/variables" for ::1 at 2016-04-21 16:58:03 -0700 + + +Started GET "/" for ::1 at 2016-04-21 16:58:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:58:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:58:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:58:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:58:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:58:06 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 16:58:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:58:06 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:58:13 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (27.4ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8a4a418> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 16:58:13 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.1ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda91b44b0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/18daced9f501b0f8/variables" for ::1 at 2016-04-21 16:58:13 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:00:28 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (18.9ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda89025d8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f34dc8d7fd7e9c9a/variables" for ::1 at 2016-04-21 17:00:28 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:00:28 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.2ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda6763d78> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/dc4c4292583d0fa6/variables" for ::1 at 2016-04-21 17:00:28 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:00:29 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.5ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda6158280> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/81b5dbdcb6eefc14/variables" for ::1 at 2016-04-21 17:00:29 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:00:29 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.5ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8b83d48> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/819673d61834a157/variables" for ::1 at 2016-04-21 17:00:29 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:00:29 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.4ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8902498> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c8d88ee975f5b66a/variables" for ::1 at 2016-04-21 17:00:29 -0700 + + +Started GET "/tasklist/Call%20Mom" for ::1 at 2016-04-21 17:00:37 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Call Mom"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:00:40 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (20.4ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda75963a0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:00:40 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (19.7ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda37eea48> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/303960786d02d2d3/variables" for ::1 at 2016-04-21 17:00:40 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 17:01:27 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.5ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8dc8a18> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 17:01:27 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.6ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda913c640> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/62f3a2728efc4ea1/variables" for ::1 at 2016-04-21 17:01:27 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 17:06:29 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (23.5ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda887c5c8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9069915255a29dd1/variables" for ::1 at 2016-04-21 17:06:29 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 17:06:30 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (24.0ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda6343ec8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f403311817d0d9aa/variables" for ::1 at 2016-04-21 17:06:30 -0700 + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 17:06:39 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (21.7ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda9292490> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 17:06:39 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (21.4ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8aca578> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8e4f623d3a148d51/variables" for ::1 at 2016-04-21 17:06:39 -0700 + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 17:11:16 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (22.1ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8930e60> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0b49d76d984b86b6/variables" for ::1 at 2016-04-21 17:11:16 -0700 + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 17:11:48 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (24.2ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda70b3ea0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3acd7ca57743a224/variables" for ::1 at 2016-04-21 17:11:48 -0700 + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-21 17:11:48 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (24.9ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda934f388> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/112e6747f3e4e9db/variables" for ::1 at 2016-04-21 17:11:48 -0700 + + +Started GET "/tasklist/Go%20to%20Second%20Lunch%20Again" for ::1 at 2016-04-21 17:11:58 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Second Lunch Again"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 17:13:51 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.4ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8e21cf8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716835960' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 17:13:51 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.5ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda676b5c8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363672036840' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c8b284028df66339/variables" for ::1 at 2016-04-21 17:13:51 -0700 + + +Started DELETE "/tasklist/25" for ::1 at 2016-04-21 17:14:09 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"Ct/vQ2bsV+bHTaVt6ZR0ZSU/FVUKOV+8uj+tSM/jKryls59rS3ovgIsVirhtxnSROKzrgew5oYIsGtpHH875+A==", "id"=>"25"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 25]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-21 17:14:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 35ms (Views: 34.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Call%20Mom" for ::1 at 2016-04-21 17:14:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.5ms) +Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 17:14:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 17:14:22 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 17:14:43 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 17:15:10 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:15:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:15:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:15:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:15:10 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 17:15:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:15:10 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:15:10 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 17:15:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.5ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:15:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:15:12 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 17:15:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:15:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:15:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:15:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:15:12 -0700 + + +Started GET "/" for ::1 at 2016-04-21 17:15:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 17:15:16 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (22.9ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda7126388> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363703211760' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-21 17:15:16 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/new.erb within layouts/application (22.7ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8a69700> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363716469240' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5d7c8fd95432336c/variables" for ::1 at 2016-04-21 17:15:16 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 17:16:44 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (22.1ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda9256080> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363720622900' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 17:16:44 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (21.5ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda8df8ce0> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363718310820' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d3029447210847a8/variables" for ::1 at 2016-04-21 17:16:44 -0700 + + +Started GET "/tasklist/4/edit" for ::1 at 2016-04-21 17:16:55 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/new.erb within layouts/application (21.1ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda327bc00> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363720622900' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/4/edit" for ::1 at 2016-04-21 17:16:55 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/new.erb within layouts/application (23.5ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007ffda9301f48> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363718310820' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a4bd034281d9f913/variables" for ::1 at 2016-04-21 17:16:55 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:16:59 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (21.1ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda65aa5b8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363720622900' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:16:59 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (21.8ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda7326520> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363718310820' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/040e264592c78b2c/variables" for ::1 at 2016-04-21 17:16:59 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:20:45 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (21.2ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8adaa18> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363720622900' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:20:46 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (21.0ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `rails_task_lists_path' for #<#:0x007ffda8b702e8> +Did you mean? rails_mailers_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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__3771229329854799961_70363718310820' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/971f276ef1f7673a/variables" for ::1 at 2016-04-21 17:20:46 -0700 + + +Started POST "/__better_errors/971f276ef1f7673a/eval" for ::1 at 2016-04-21 17:23:52 -0700 + + +Started POST "/__better_errors/971f276ef1f7673a/eval" for ::1 at 2016-04-21 17:24:08 -0700 + + +Started POST "/__better_errors/971f276ef1f7673a/eval" for ::1 at 2016-04-21 17:24:11 -0700 + + +Started POST "/__better_errors/971f276ef1f7673a/eval" for ::1 at 2016-04-21 17:24:24 -0700 + + +Started POST "/__better_errors/971f276ef1f7673a/variables" for ::1 at 2016-04-21 17:24:34 -0700 + + +Started GET "/" for ::1 at 2016-04-21 17:25:52 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (8.8ms) +Completed 200 OK in 25ms (Views: 16.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-04-21 17:32:32 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 253ms (Views: 241.7ms | ActiveRecord: 0.7ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:32:34 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (16.9ms) +Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasklist" for ::1 at 2016-04-21 17:32:39 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8zLIZThNujzCEmlUh23I00JC7eVtoc4m0GTjfQemf+MoLsJuXdOjr9QZnDWT7fXUJr1Y3O2eQYNZOSCJDNKuw==", "rails_task_list"=>{"title"=>"dsjal"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.7ms) INSERT INTO "rails_task_lists" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "dsjal"], ["created_at", "2016-04-22 00:32:39.723172"], ["updated_at", "2016-04-22 00:32:39.723172"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 1.3ms) + + +Started GET "/" for ::1 at 2016-04-21 17:32:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 17:32:45 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (38.5ms) +Completed 500 Internal Server Error in 49ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007fc6d32e7218> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___2265568016624385471_70245961559000' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 17:32:45 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (21.1ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_list_path' for #<#:0x007fc6d91dc160> +Did you mean? rails_task_lists_path + rails_task_lists_url: + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___2265568016624385471_70245997303620' + 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/sakne/.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/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1ce58d41bb30dc79/variables" for ::1 at 2016-04-21 17:32:46 -0700 + + +Started GET "/" for ::1 at 2016-04-21 17:33:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 24ms (Views: 21.5ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:33:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:33:30 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 17:33:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:33:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:33:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:33:30 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:33:30 -0700 + + +Started GET "/tasklist/26/edit" for ::1 at 2016-04-21 17:33:31 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"26"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 26]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/26" for ::1 at 2016-04-21 17:33:37 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasklist/26"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.9ms) + + +Started GET "/tasklist/26/edit" for ::1 at 2016-04-21 17:34:09 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"26"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 26]] + Rendered tasklist/new.erb within layouts/application (1.6ms) +Completed 200 OK in 27ms (Views: 20.5ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-21 17:34:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 17:34:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:34:12 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 17:34:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:34:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:34:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:34:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:34:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:34:12 -0700 + + +Started GET "/" for ::1 at 2016-04-21 17:34:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:34:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:34:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:34:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:34:13 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 17:34:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:34:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:34:13 -0700 + + +Started GET "/tasklist/26/edit" for ::1 at 2016-04-21 17:34:14 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"26"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 26]] + Rendered tasklist/new.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/26" for ::1 at 2016-04-21 17:34:15 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"jnpnew+OlTp4oOjlp/O44+qN/iKdO55+GLwOd+bbUJwhFhdTIhjtXDT4xzAjobgX9x4A9ns7YECOmXl4NvaD2A==", "rails_task_list"=>{"title"=>"dsjal"}, "commit"=>"Update Rails task list", "id"=>"26"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 26]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasklist.26 +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/tasklist.26" for ::1 at 2016-04-21 17:34:16 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/26/edit" for ::1 at 2016-04-21 17:34:19 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"26"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 26]] + Rendered tasklist/new.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/26" for ::1 at 2016-04-21 17:34:24 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"c2YIFatkypmC4VQ6svsohCC1zbFCDvZOBSxCK42gVnDcCng9hvKy/865e+82qShwPSYzZaQOCHCTCTUkXY2FNA==", "rails_task_list"=>{"title"=>"dsjal yes"}, "commit"=>"Update Rails task list", "id"=>"26"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 26]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "rails_task_lists" SET "title" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["title", "dsjal yes"], ["updated_at", "2016-04-22 00:34:24.130759"], ["id", 26]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasklist.26 +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasklist.26" for ::1 at 2016-04-21 17:34:24 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/dsjal%20yes" for ::1 at 2016-04-21 17:34:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"dsjal yes"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/26/edit" for ::1 at 2016-04-21 17:34:30 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"26"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 26]] + Rendered tasklist/new.erb within layouts/application (1.0ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/26" for ::1 at 2016-04-21 17:34:38 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/ZdpUeu9OIYg7yXg+46hHAjfN5GwRdCoAbO9G221TA9S+xl5xitA4Gy3CjV/3KHoFUzJRVZFLpaXlsoUvZifSw==", "rails_task_list"=>{"title"=>"yes yes dsjal yes"}, "commit"=>"Update Rails task list", "id"=>"26"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 26]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "rails_task_lists" SET "title" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["title", "yes yes dsjal yes"], ["updated_at", "2016-04-22 00:34:38.864240"], ["id", 26]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasklist.26 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasklist.26" for ::1 at 2016-04-21 17:34:38 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-21 17:35:39 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasklist/8/edit" for ::1 at 2016-04-21 17:36:24 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasklist/new.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasklist/26" for ::1 at 2016-04-21 17:36:29 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"pv0rGlnwroGGANO0W6ZSfGIn34B4/76dWqKT6NKegSYJkVsydGbW58pY/GHf9FKIf7QhVJ7/QKPMh+TnArNSYg==", "id"=>"26"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 26]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 26]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-21 17:36:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/8/edit" for ::1 at 2016-04-21 19:53:05 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasklist/new.erb within layouts/application (1.9ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/8/edit" for ::1 at 2016-04-21 20:01:25 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasklist/new.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 20:01:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 20:01:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 20:01:25 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 20:01:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 20:01:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 20:01:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 20:01:25 -0700 + + +Started GET "/" for ::1 at 2016-04-21 20:01:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 20:01:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 20:06:53 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 20:06:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 20:06:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 20:06:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 20:06:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 20:06:53 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 20:06:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 20:06:53 -0700 + + +Started GET "/" for ::1 at 2016-04-21 20:20:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (15.4ms) +Completed 200 OK in 60ms (Views: 54.2ms | ActiveRecord: 0.9ms) + + +Started GET "/tasklist/Call%20Mom" for ::1 at 2016-04-21 20:20:52 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Call Mom"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.7ms) +Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Call%20Mom" for ::1 at 2016-04-21 20:55:09 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 24.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 20:55:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 20:55:09 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 20:55:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 20:55:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 20:55:09 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 20:55:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 20:55:09 -0700 + + +Started GET "/" for ::1 at 2016-04-21 20:55:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 20:55:16 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.6ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Second%20Lunch%20Again" for ::1 at 2016-04-21 20:55:21 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Second Lunch Again"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 20:55:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 20:59:13 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:00:26 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:00:26 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:00:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:00:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:00:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:00:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:00:26 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:00:26 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:00:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:00:27 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:00:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:00:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:00:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:00:27 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:00:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:00:27 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:02:33 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:02:33 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:02:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:02:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:02:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:02:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:02:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:02:33 -0700 + + +Started GET "/" for ::1 at 2016-04-21 21:02:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:02:38 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:03:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:03:12 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:03:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:03:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:03:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:03:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:03:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:03:12 -0700 + + +Started GET "/" for ::1 at 2016-04-21 21:03:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:03:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:04:03 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:04:03 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:04:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:04:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:04:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:04:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:04:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:04:03 -0700 + + +Started GET "/articles/new" for ::1 at 2016-04-21 21:05:53 -0700 + +ActionController::RoutingError (No route matches [GET] "/articles/new"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (63.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.6ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:06:33 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.6ms) +Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:06:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:06:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:06:33 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:06:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:06:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:06:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:06:33 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:07:15 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (6.9ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:32:in `_app_views_tasklist_show_erb__3570190448079366287_70246011236280' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/addab9fc41533c0c/variables" for ::1 at 2016-04-21 21:07:15 -0700 + + +Started POST "/__better_errors/addab9fc41533c0c/eval" for ::1 at 2016-04-21 21:08:25 -0700 + + +Started POST "/__better_errors/addab9fc41533c0c/eval" for ::1 at 2016-04-21 21:08:34 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:09:14 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:09:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:09:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:09:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:09:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:09:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:09:14 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:09:14 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:12:31 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:12:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:12:31 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:12:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:12:31 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:12:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:12:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:12:31 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:13:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (6.0ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:40:in `_app_views_tasklist_show_erb__3570190448079366287_70246011748280' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9f2c1723d6873a2c/variables" for ::1 at 2016-04-21 21:13:05 -0700 + + +Started POST "/__better_errors/9f2c1723d6873a2c/eval" for ::1 at 2016-04-21 21:13:14 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:15:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (7.1ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:40:in `_app_views_tasklist_show_erb__3570190448079366287_70245997534640' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c77bd62e1c50aa97/variables" for ::1 at 2016-04-21 21:15:12 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:15:13 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (4.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:40:in `_app_views_tasklist_show_erb__3570190448079366287_70245997534640' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/21687f5bb3f8da68/variables" for ::1 at 2016-04-21 21:15:13 -0700 + + +Started POST "/__better_errors/21687f5bb3f8da68/eval" for ::1 at 2016-04-21 21:15:30 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:16:28 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (6.5ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:40:in `_app_views_tasklist_show_erb__3570190448079366287_70245973218520' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0b97a04c71d90902/variables" for ::1 at 2016-04-21 21:16:28 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:16:29 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (5.0ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:40:in `_app_views_tasklist_show_erb__3570190448079366287_70245973218520' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e0deeb98a79d4164/variables" for ::1 at 2016-04-21 21:16:29 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:16:46 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:16:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:16:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:16:46 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:16:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:16:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:16:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:16:46 -0700 + + +Started GET "/" for ::1 at 2016-04-21 21:16:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:17:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:17:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-21 21:19:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 37ms (Views: 33.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:19:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:19:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:19:24 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:19:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:19:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:19:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:19:24 -0700 + + +Started GET "/" for ::1 at 2016-04-21 21:19:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:19:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:19:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:19:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:19:25 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:19:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:19:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:19:25 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:19:26 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 21:19:31 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 21:19:34 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-21 21:19:39 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qEB3aWkR6JVD9r2Vh4pd6V/5PGpSK0NII1CpUqX06yYHLAdBRIeQ8w+ukkAD2F0dQmrCvrQrvXa1dd5dddk4Yg==", "rails_task_list"=>{"title"=>"Go to Brunch"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-21 21:19:39 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 21:19:42 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/tasklist/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 21:21:00 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 28ms (Views: 24.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:21:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:21:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:21:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:21:00 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:21:00 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:21:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:21:00 -0700 + + +Started GET "/" for ::1 at 2016-04-21 21:21:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:21:04 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:21:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Second%20Lunch%20Again" for ::1 at 2016-04-21 21:21:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Second Lunch Again"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:21:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 21:23:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:23:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:23:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:23:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:23:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:23:01 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:23:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:23:01 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 21:23:03 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-21 21:23:27 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"2oKZsStOs/q6ZYwhfQUNHA630zJFN0xTXXAhN4oo8Jx17umZBtjLnPY9o/T5Vw3oEyQt5qM3sm3LVVY4WgUj2A==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-21 21:23:27 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:23:28 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Second%20Lunch%20Again" for ::1 at 2016-04-21 21:23:44 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Second Lunch Again"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:26:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:26:14 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:26:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 21:26:17 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 21:27:42 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.7ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:27:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:27:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:27:42 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:27:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:27:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:27:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:27:42 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 21:28:08 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:28:08 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:28:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:28:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:28:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:28:08 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:28:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:28:08 -0700 + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-21 21:28:17 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sUxO5m1fIK7IgvyOOZ5keSWSEWXvax3YVATLK4LLi7seID7OQMlYyITa01u9zGSNOAHvsQlr4+bCIbwkUuZY/w==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-21 21:28:17 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:28:19 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:28:22 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 21:28:25 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:28:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 21:28:44 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.0ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:28:51 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Call%20Mom" for ::1 at 2016-04-21 21:28:55 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/8/edit" for ::1 at 2016-04-21 21:28:59 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/8" for ::1 at 2016-04-21 21:29:12 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"JLzBDTdS9b5QZOvZ+k92m/q6zAkr4mJoZ4b9CbIlr9qL0LElGsSN2Bw8xAx+HXZv5yky3c3inFbxo4oGYgh8ng==", "rails_task_list"=>{"title"=>"Call Mom", "description"=>"Or else and we can eat"}, "commit"=>"Update Rails task list", "id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "rails_task_lists" SET "description" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["description", "Or else and we can eat"], ["updated_at", "2016-04-22 04:29:12.881425"], ["id", 8]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasklist.8 +Completed 302 Found in 6ms (ActiveRecord: 1.7ms) + + +Started GET "/tasklist.8" for ::1 at 2016-04-21 21:29:12 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Call%20Mom" for ::1 at 2016-04-21 21:29:17 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Call Mom"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.5ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/8/edit" for ::1 at 2016-04-21 21:29:20 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/8" for ::1 at 2016-04-21 21:29:37 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"w7m5QnIeU8H3jhP3wK41RQ+9yQyBhYlMtA/blhQPC/Ns1clqX4grp7vWPCJE/DWxEi432GeFd3IiKqyZxCLYtw==", "rails_task_list"=>{"title"=>"Call Mom or else", "description"=>"Or else and we can eat"}, "commit"=>"Update Rails task list", "id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "rails_task_lists" SET "title" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["title", "Call Mom or else"], ["updated_at", "2016-04-22 04:29:37.086459"], ["id", 8]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/tasklist.8 +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/tasklist.8" for ::1 at 2016-04-21 21:29:37 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/Call%20Mom%20or%20else" for ::1 at 2016-04-21 21:29:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Call Mom or else"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:31:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 21:35:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (9.4ms) +Completed 200 OK in 59ms (Views: 51.8ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-21 21:35:27 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/" for ::1 at 2016-04-21 21:35:27 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:35:27 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:35:30 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:36:41 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:39:03 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:39:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:39:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:39:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:39:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:39:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:39:03 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:39:03 -0700 + + +Started GET "/" for ::1 at 2016-04-21 21:39:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:41:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:41:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:41:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:41:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:41:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:41:23 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:41:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:41:23 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 21:41:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:43:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:43:01 -0700 + + +Started GET "/assets/application.self-d2cf0a022e44ff4e6c0f8c93b990dd645a042a9c934a91b2b58a51e9f04add21.css?body=1" for ::1 at 2016-04-21 21:43:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:43:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:43:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:43:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:43:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:43:01 -0700 + + +Started GET "/tasklist/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-21 21:43:24 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:43:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 21:50:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:50:19 -0700 + + +Started GET "/assets/application.self-1ae73f26c70ade921d172427a1d56faab198d00f2972aa5c8d17eeab93c4ff35.css?body=1" for ::1 at 2016-04-21 21:50:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:50:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:50:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:50:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:50:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:50:19 -0700 + + +Started GET "/" for ::1 at 2016-04-21 21:50:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:50:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:50:20 -0700 + + +Started GET "/assets/application.self-1ae73f26c70ade921d172427a1d56faab198d00f2972aa5c8d17eeab93c4ff35.css?body=1" for ::1 at 2016-04-21 21:50:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:50:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:50:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:50:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:50:20 -0700 + + +Started GET "/" for ::1 at 2016-04-21 21:50:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 21:50:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 21:50:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 21:50:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 21:50:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 21:50:44 -0700 + + +Started GET "/assets/application.self-1ae73f26c70ade921d172427a1d56faab198d00f2972aa5c8d17eeab93c4ff35.css?body=1" for ::1 at 2016-04-21 21:50:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 21:50:44 -0700 + + +Started GET "/" for ::1 at 2016-04-21 22:00:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 22:00:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 22:00:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 22:00:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 22:00:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 22:00:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 22:00:17 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-21 22:00:17 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-21 22:00:18 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 22:00:22 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 22:00:24 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 22:00:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 22:00:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 22:00:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 22:00:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 22:00:24 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-21 22:00:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 22:00:24 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-21 22:01:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.5ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 22:01:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 22:01:34 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-21 22:01:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 22:01:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 22:01:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 22:01:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 22:01:34 -0700 + + +Started GET "/" for ::1 at 2016-04-21 22:19:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 39ms (Views: 35.8ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 22:19:11 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (10.7ms) +Completed 200 OK in 29ms (Views: 26.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-21 22:21:37 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/tasklist/index.html.erb:50: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ec383700f577bfc2/variables" for ::1 at 2016-04-21 22:21:37 -0700 + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-21 22:22:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 22:22:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 22:22:01 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-21 22:22:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 22:22:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 22:22:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 22:22:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 22:22:01 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 22:22:12 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 22:23:48 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 17.4ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 22:23:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 22:23:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 22:23:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 22:23:48 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-21 22:23:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 22:23:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 22:23:48 -0700 + + +Started GET "/" for ::1 at 2016-04-21 22:23:49 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/tasklist/index.html.erb:48: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.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 22:23:49 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/tasklist/index.html.erb:48: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b23dd7bcf3d29029/variables" for ::1 at 2016-04-21 22:23:49 -0700 + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-21 22:23:51 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/tasklist/index.html.erb:48: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b32fc2c6e60e8362/variables" for ::1 at 2016-04-21 22:23:51 -0700 + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-21 22:23:52 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/tasklist/index.html.erb:48: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e49fc7e7aec4f098/variables" for ::1 at 2016-04-21 22:23:52 -0700 + RailsTaskList Load (1.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-21 22:24:37 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/tasklist/index.html.erb:48: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b38b90353852e60d/variables" for ::1 at 2016-04-21 22:24:37 -0700 + RailsTaskList Load (1.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-21 22:24:39 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/tasklist/index.html.erb:48: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e421edaa032867c1/variables" for ::1 at 2016-04-21 22:24:39 -0700 + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-21 22:24:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 22:24:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 22:24:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 22:24:52 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-21 22:24:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 22:24:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 22:24:52 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 22:24:52 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 22:25:29 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 22:32:07 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.4ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 22:33:22 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.1ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 22:33:22 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-21 22:33:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 22:33:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 22:33:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 22:33:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 22:33:22 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 22:33:22 -0700 + + +Started GET "/" for ::1 at 2016-04-21 22:33:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (11.0ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `to_key' for # +Did you mean? to_query + to_ary: + 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' + actionview (4.2.6) lib/action_view/record_identifier.rb:80:in `record_key_for_dom_id' + actionview (4.2.6) lib/action_view/record_identifier.rb:62:in `dom_id' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:459:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasklist/index.html.erb:35:in `block in _app_views_tasklist_index_html_erb__2622160174736613945_70245973779440' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245973779440' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.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 22:33:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.9ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `to_key' for # +Did you mean? to_query + to_ary: + 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' + actionview (4.2.6) lib/action_view/record_identifier.rb:80:in `record_key_for_dom_id' + actionview (4.2.6) lib/action_view/record_identifier.rb:62:in `dom_id' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:459:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasklist/index.html.erb:35:in `block in _app_views_tasklist_index_html_erb__2622160174736613945_70245973431180' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245973431180' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/73f59d02364a1b57/variables" for ::1 at 2016-04-21 22:33:24 -0700 + + +Started POST "/__better_errors/73f59d02364a1b57/eval" for ::1 at 2016-04-21 22:33:33 -0700 + + +Started GET "/" for ::1 at 2016-04-21 22:36:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (8.7ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `to_key' for # +Did you mean? to_query + to_ary: + 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' + actionview (4.2.6) lib/action_view/record_identifier.rb:80:in `record_key_for_dom_id' + actionview (4.2.6) lib/action_view/record_identifier.rb:62:in `dom_id' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:459:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasklist/index.html.erb:35:in `block in _app_views_tasklist_index_html_erb__2622160174736613945_70245995147080' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245995147080' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/48bf981488cf83ce/variables" for ::1 at 2016-04-21 22:36:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 22:36:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.1ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `to_key' for # +Did you mean? to_query + to_ary: + 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' + actionview (4.2.6) lib/action_view/record_identifier.rb:80:in `record_key_for_dom_id' + actionview (4.2.6) lib/action_view/record_identifier.rb:62:in `dom_id' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:459:in `apply_form_for_options!' + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasklist/index.html.erb:35:in `block in _app_views_tasklist_index_html_erb__2622160174736613945_70245995147080' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245995147080' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7be7c9c17e043269/variables" for ::1 at 2016-04-21 22:36:02 -0700 + + +Started GET "/" for ::1 at 2016-04-21 22:36:24 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/tasklist/index.html.erb:48: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/589e266bb9998959/variables" for ::1 at 2016-04-21 22:36:24 -0700 + RailsTaskList Load (1.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-21 22:36:25 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/tasklist/index.html.erb:48: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a4c0bb2f79ab3332/variables" for ::1 at 2016-04-21 22:36:25 -0700 + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-21 22:36:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 22:36:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 22:36:41 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-21 22:36:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 22:36:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 22:36:41 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 22:36:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 22:36:41 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 22:36:44 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-21 22:36:58 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"gw/JlNBymdGYKj8xmKH5vGEGYq4pAbMEGJp0pTtQlTQsY7m8/eTht9RyEOQc8/lIfJWces8BTTqOvwOq631GcA==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends good"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.9ms) UPDATE "rails_task_lists" SET "description" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["description", "With friends good"], ["updated_at", "2016-04-22 05:36:58.555435"], ["id", 2]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 8ms (ActiveRecord: 2.8ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-21 22:36:58 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-21 22:37:03 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-21 22:37:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 08:21:02 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.8ms) +Completed 200 OK in 29ms (Views: 21.9ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:21:06 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 08:27:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:27:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 08:27:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/4/edit" for ::1 at 2016-04-22 08:27:49 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:31:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:34:36 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (29.6ms) +Completed 200 OK in 51ms (Views: 49.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:34:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:34:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:34:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:34:36 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:34:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:34:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:34:36 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:34:37 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:34:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:34:37 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:34:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:34:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:34:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:34:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:34:37 -0700 + + +Started GET "/" for ::1 at 2016-04-22 08:34:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:34:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 08:34:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 08:34:45 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.1ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 08:35:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:35:16 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:35:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:35:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:35:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:35:16 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:35:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:35:16 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:35:17 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:35:19 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:35:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:35:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:35:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:35:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:35:19 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:35:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:35:19 -0700 + + +Started GET "/" for ::1 at 2016-04-22 08:36:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Play%20Video%20Games" for ::1 at 2016-04-22 08:36:49 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Play Video Games"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 08:37:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 08:38:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:38:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:38:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:38:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:38:29 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:38:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:38:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:38:29 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:38:31 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:38:32 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:38:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:38:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:38:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:38:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:38:32 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:38:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:38:32 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:38:55 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:38:55 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:38:55 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:38:55 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:38:55 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:38:55 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:38:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:38:55 -0700 + + +Started GET "/" for ::1 at 2016-04-22 08:40:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:40:45 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 6ms (ActiveRecord: 0.6ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:41: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:40:45 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:41: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5415471654423156/variables" for ::1 at 2016-04-22 08:40:45 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-22 08:41:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-22 08:41:35 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:41:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:41:35 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:41:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:41:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:41:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:41:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:41:35 -0700 + + +Started GET "/" for ::1 at 2016-04-22 08:41:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-22 08:41:48 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 08:41:53 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 08:42:00 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rHOkqqLbaYGyRtotrO0zcXkaAuqTeGvv/Z3P2KXU/t8DH9SCj00R5/4e9fgovzOFZIn8PnV4ldFruLjXdfktmw==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends good and family"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.0ms) begin transaction + SQL (0.9ms) UPDATE "rails_task_lists" SET "description" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["description", "With friends good and family"], ["updated_at", "2016-04-22 15:42:00.168822"], ["id", 2]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 7ms (ActiveRecord: 1.7ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 08:42:00 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 46ms (Views: 44.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:42:06 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.5ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 08:42:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-22 08:43:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:43:21 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:43:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:43:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:43:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:43:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:43:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:43:21 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:43:22 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.5ms) +Completed 200 OK in 32ms (Views: 31.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:44:26 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:44:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:44:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:44:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:44:26 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:44:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:44:26 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:44:26 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:44:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (0.5ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:44:27 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:44:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:44:27 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:44:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:44:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:44:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:44:27 -0700 + + +Started GET "/" for ::1 at 2016-04-22 08:44:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:44:30 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:47:00 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 08:47:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 08:47:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 08:47:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 08:47:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 08:47:00 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 08:47:00 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 08:47:00 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 08:47:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (6.6ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245994691300' + 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/sakne/.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/tasklist_controller.rb:42: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8ae4aa98c690a085/variables" for ::1 at 2016-04-22 08:47:27 -0700 + + +Started POST "/__better_errors/8ae4aa98c690a085/eval" for ::1 at 2016-04-22 08:47:38 -0700 + + +Started POST "/__better_errors/8ae4aa98c690a085/eval" for ::1 at 2016-04-22 08:47:42 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 08:48:24 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.4ms) +Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 08:48:37 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 09:01:56 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 09:01:56 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 09:01:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 09:01:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 09:01:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 09:01:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 09:01:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 09:01:56 -0700 + + +Started GET "/" for ::1 at 2016-04-22 09:01:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 10:24:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (14.2ms) +Completed 200 OK in 66ms (Views: 57.7ms | ActiveRecord: 1.1ms) + + +Started GET "/apple-touch-icon-precomposed.png" for ::1 at 2016-04-22 10:24:44 -0700 + +ActionController::RoutingError (No route matches [GET] "/apple-touch-icon-precomposed.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) + Rendered /Users/sakne/.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 (75.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.7ms) + + +Started GET "/apple-touch-icon.png" for ::1 at 2016-04-22 10:24:44 -0700 + +ActionController::RoutingError (No route matches [GET] "/apple-touch-icon.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) + Rendered /Users/sakne/.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/sakne/.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.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.2ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.2ms) + + +Started GET "/" for ::1 at 2016-04-22 10:24:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.2ms) + + +Started GET "/apple-touch-icon-precomposed.png" for ::1 at 2016-04-22 10:24:44 -0700 + +ActionController::RoutingError (No route matches [GET] "/apple-touch-icon-precomposed.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.0ms) + + +Started GET "/apple-touch-icon.png" for ::1 at 2016-04-22 10:24:44 -0700 + +ActionController::RoutingError (No route matches [GET] "/apple-touch-icon.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) + Rendered /Users/sakne/.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 (101.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (134.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (203.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:07:59 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (9.6ms) +Completed 200 OK in 76ms (Views: 62.7ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-22 11:13:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 35ms (Views: 34.1ms | ActiveRecord: 0.7ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:14:00 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (4.4ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:22:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (15.4ms) +Completed 200 OK in 69ms (Views: 61.8ms | ActiveRecord: 1.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 11:22:59 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 11:22:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:22:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:22:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:22:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:22:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:22:59 -0700 + + +Started GET "/apple-touch-icon-precomposed.png" for ::1 at 2016-04-22 11:22:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/apple-touch-icon-precomposed.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/sakne/.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 (113.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.1ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.5ms) + + +Started GET "/apple-touch-icon.png" for ::1 at 2016-04-22 11:23:00 -0700 + +ActionController::RoutingError (No route matches [GET] "/apple-touch-icon.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (78.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.7ms) + + +Started GET "/tasklist/:id" for ::1 at 2016-04-22 11:23:01 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>":id"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (7.8ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245962094620' + 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/sakne/.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/tasklist_controller.rb:42: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/:id" for ::1 at 2016-04-22 11:23:02 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>":id"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245994691300' + 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/sakne/.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/tasklist_controller.rb:42: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7a943590ea4015dd/variables" for ::1 at 2016-04-22 11:23:02 -0700 + + +Started GET "/tasklist/:id" for ::1 at 2016-04-22 11:23:07 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>":id"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (5.8ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245962094620' + 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/sakne/.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/tasklist_controller.rb:42: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/:id" for ::1 at 2016-04-22 11:23:07 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>":id"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (5.9ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245994691300' + 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/sakne/.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/tasklist_controller.rb:42: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0e6cde60c2a4e23f/variables" for ::1 at 2016-04-22 11:23:07 -0700 + + +Started POST "/__better_errors/0e6cde60c2a4e23f/eval" for ::1 at 2016-04-22 11:23:34 -0700 + + +Started POST "/__better_errors/0e6cde60c2a4e23f/eval" for ::1 at 2016-04-22 11:23:39 -0700 + + +Started GET "/tasklist/:id" for ::1 at 2016-04-22 11:24:58 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>":id"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (6.6ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245962094620' + 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/sakne/.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/tasklist_controller.rb:42: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/:id" for ::1 at 2016-04-22 11:24:58 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>":id"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (6.4ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245994691300' + 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/sakne/.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/tasklist_controller.rb:42: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/59c0cb81e595a34b/variables" for ::1 at 2016-04-22 11:24:58 -0700 + + +Started GET "/tasklist/:id" for ::1 at 2016-04-22 11:25:57 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>":id"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (5.3ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245962094620' + 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/sakne/.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/tasklist_controller.rb:42: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/:id" for ::1 at 2016-04-22 11:25:57 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>":id"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (5.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245994691300' + 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/sakne/.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/tasklist_controller.rb:42: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a43b948f6277e6fa/variables" for ::1 at 2016-04-22 11:25:57 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:28:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (11.4ms) +Completed 200 OK in 45ms (Views: 37.9ms | ActiveRecord: 1.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 11:28:00 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 11:28:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:28:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:28:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:28:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:28:00 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:28:00 -0700 + + +Started GET "/tasklist/:id/edit" for ::1 at 2016-04-22 11:28:07 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>":id"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=:id: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:25: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/:id/edit" for ::1 at 2016-04-22 11:28:07 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>":id"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=:id: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:25: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/622189ba034916cd/variables" for ::1 at 2016-04-22 11:28:07 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:30:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.8ms) +Completed 200 OK in 40ms (Views: 38.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 11:30:49 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 11:30:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:30:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:30:49 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:30:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:30:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:30:49 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:30:51 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (3.9ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:33:14 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.0ms) +Completed 200 OK in 34ms (Views: 22.6ms | ActiveRecord: 0.8ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:33:17 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:34:20 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.8ms) +Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:34:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 11:34:45 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 11:34:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:34:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:34:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:34:45 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:34:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:36:22 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (5.2ms) +Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:36:29 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.0ms) +Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:38:02 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.0ms) +Completed 200 OK in 44ms (Views: 43.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:38:23 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:40:39 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (3.1ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:40:53 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (3.1ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 11:47:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (13.9ms) +Completed 200 OK in 50ms (Views: 43.9ms | ActiveRecord: 1.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:47:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:47:15 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 11:47:18 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (3.5ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 11:49:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (11.1ms) +Completed 200 OK in 53ms (Views: 48.2ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 11:49:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:49:37 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 11:49:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:49:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:49:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:49:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:49:37 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 11:49:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 2]] + Rendered tasklist/show.erb within layouts/application (8.4ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245962094620' + 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/sakne/.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/tasklist_controller.rb:40: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 11:49:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 2]] + Rendered tasklist/show.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245994691300' + 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/sakne/.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/tasklist_controller.rb:40: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4e3d34f449e2e882/variables" for ::1 at 2016-04-22 11:49:39 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:50:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.0ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (20.7ms) +Completed 200 OK in 70ms (Views: 63.5ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 11:50:34 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 11:50:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:50:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:50:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:50:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:50:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:50:34 -0700 + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 11:50:37 -0700 +Processing by TasklistController#update as HTML + Parameters: {"authenticity_token"=>"XoZmBt93XszZKgYi1NZqUiAyCEX0ysRrjgoB4AV3TtDx6hYu8uEmqpVyKfdQhGqmPaH2kRLKOlUYL3bv1VqdlA==", "id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: _method, authenticity_token, id +  (0.2ms) begin transaction +  (0.1ms) rollback transaction +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.5ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:28: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0503620513f20bd5/variables" for ::1 at 2016-04-22 11:50:37 -0700 + + +Started GET "/" for ::1 at 2016-04-22 11:50:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-22 11:50:54 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (2.9ms) +Completed 200 OK in 31ms (Views: 28.9ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasklist/3" for ::1 at 2016-04-22 11:50:56 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"eoMiXxRYV2RRvJJQmzIUSBMOyH3dsi77/TBOG9du5BDV71J3Oc4vAh3kvYUfYBS8Dp02qTuy0MVrFTkUB0M3VA==", "rails_task_list"=>{"title"=>"Go to Lunch today", "description"=>"With Family"}, "commit"=>"Update Rails task list", "id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasklist.3 +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 11:50:56 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 11:50:58 -0700 +Processing by TasklistController#update as HTML + Parameters: {"authenticity_token"=>"elkOdnXt0pUuekfHVoZJLYyml3AtQnwjf29C3MiP8IjVNX5eWHuq82IiaBLS1EnZkTVppMtCgh3pSjXTGKIjzA==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: _method, authenticity_token, id +  (0.0ms) begin transaction +  (0.0ms) rollback transaction +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:28: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0162b64fa469b996/variables" for ::1 at 2016-04-22 11:50:58 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 11:52:36 -0700 +Processing by TasklistController#index as + RailsTaskList Load (1.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (31.7ms) +Completed 200 OK in 86ms (Views: 78.6ms | ActiveRecord: 2.2ms) + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 11:52:38 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 11:52:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:52:38 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:52:38 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 11:52:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:52:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:52:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:52:38 -0700 + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 11:52:40 -0700 + +AbstractController::ActionNotFound - The action 'done' could not be found for TasklistController: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d55cd18614bf4035/variables" for ::1 at 2016-04-22 11:52:40 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 11:53:51 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 35ms (Views: 34.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 11:54:28 -0700 + +AbstractController::ActionNotFound - The action 'done' could not be found for TasklistController: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2c62a1dc5c89a51d/variables" for ::1 at 2016-04-22 11:54:28 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 11:57:17 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 41ms (Views: 37.5ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 11:57:18 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 11:57:18 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 11:57:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 11:57:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 11:57:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 11:57:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 11:57:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 11:57:18 -0700 + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 11:57:19 -0700 + +AbstractController::ActionNotFound - The action 'done' could not be found for TasklistController: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/88d502c1f3723962/variables" for ::1 at 2016-04-22 11:57:19 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 12:00:39 -0700 + +SyntaxError - syntax error, unexpected ']' + @tasklist.update(done[done_task_list:]) + ^: + app/controllers/tasklist_controller.rb:17: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ad4bb276d8bc594c/variables" for ::1 at 2016-04-22 12:00:39 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 12:01:00 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (12.4ms) +Completed 200 OK in 58ms (Views: 52.6ms | ActiveRecord: 1.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:01:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:01:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:01:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:01:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:01:01 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:01:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:01:01 -0700 + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 12:01:02 -0700 + +AbstractController::ActionNotFound - The action 'done' could not be found for TasklistController: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/806cff1403a2d66f/variables" for ::1 at 2016-04-22 12:01:02 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 12:02:36 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 39ms (Views: 36.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 12:02:36 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:02:36 -0700 + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 12:02:37 -0700 + +AbstractController::ActionNotFound - The action 'done' could not be found for TasklistController: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5abbdc0c20adc4e5/variables" for ::1 at 2016-04-22 12:02:38 -0700 + + +Started GET "/tasklist.3" for ::1 at 2016-04-22 12:07:23 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 12:07:25 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.3ms) +Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:12:42 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (27.1ms) +Completed 500 Internal Server Error in 42ms (ActiveRecord: 0.9ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245962094620' + 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/sakne/.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/tasklist_controller.rb:40: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:12:43 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (7.9ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245994691300' + 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/sakne/.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/tasklist_controller.rb:40: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c9280f853d823471/variables" for ::1 at 2016-04-22 12:12:43 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:12:47 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (23.2ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245962094620' + 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/sakne/.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/tasklist_controller.rb:40: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:12:47 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (6.6ms) +Completed 500 Internal Server Error in 11ms (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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245994691300' + 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/sakne/.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/tasklist_controller.rb:40: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/30713b68700a2cbc/variables" for ::1 at 2016-04-22 12:12:47 -0700 + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-22 12:12:53 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (7.2ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245962094620' + 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/sakne/.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/tasklist_controller.rb:40: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Lunch%20today" for ::1 at 2016-04-22 12:12:53 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Lunch today"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (26.0ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245994691300' + 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/sakne/.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/tasklist_controller.rb:40: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fd6a53148afc696f/variables" for ::1 at 2016-04-22 12:12:53 -0700 + + +Started PATCH "/tasklist/3" for ::1 at 2016-04-22 12:13:28 -0700 + +AbstractController::ActionNotFound - The action 'done' could not be found for TasklistController: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b727de5237c56fb8/variables" for ::1 at 2016-04-22 12:13:28 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 12:13:31 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.4ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-22 12:13:42 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/new.erb within layouts/application (3.3ms) +Completed 200 OK in 29ms (Views: 27.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 12:14:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:14:13 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (5.1ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245962094620' + 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/sakne/.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/tasklist_controller.rb:40: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:14:13 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (5.6ms) +Completed 500 Internal Server Error in 9ms (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/tasklist/show.erb:33:in `_app_views_tasklist_show_erb__3570190448079366287_70245994691300' + 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/sakne/.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/tasklist_controller.rb:40: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f6c08f9993615a72/variables" for ::1 at 2016-04-22 12:14:13 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:14:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:14:48 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:14:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:14:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:14:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:14:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:14:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:14:48 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:14:49 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:16:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 28ms (Views: 25.4ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:16:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:16:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:16:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:16:06 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:16:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:16:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:16:06 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:16:08 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:17:01 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:17:01 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:17:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:17:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:17:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:17:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:17:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:17:01 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:17:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Call%20Mom%20or%20else" for ::1 at 2016-04-22 12:17:26 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Call Mom or else"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 12:18:03 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (3.1ms) +Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:18:18 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 0]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 12:21:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 30ms (Views: 26.9ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:21:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:21:38 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:21:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:21:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:21:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:21:38 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:21:38 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:21:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:21:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f9ca19fc2814a73b/variables" for ::1 at 2016-04-22 12:21:40 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:22:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 32ms (Views: 28.7ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:22:07 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:22:07 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:22:07 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:22:07 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:22:07 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:22:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:22:07 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:22:10 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", nil]] +Completed 404 Not Found in 3ms (ActiveRecord: 0.4ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:22:10 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", nil]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/78490b461be70f28/variables" for ::1 at 2016-04-22 12:22:10 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:22:58 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 4ms (ActiveRecord: 0.5ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:22:58 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3492817f24869028/variables" for ::1 at 2016-04-22 12:22:58 -0700 + + +Started GET "/tasklist/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-22 12:23:02 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=High Five Somebody You Don't Know: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-22 12:23:02 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"High Five Somebody You Don't Know"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=High Five Somebody You Don't Know: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9097aa13504dc339/variables" for ::1 at 2016-04-22 12:23:02 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:24:03 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:24:03 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4beff7d78a135536/variables" for ::1 at 2016-04-22 12:24:03 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:26:33 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:26:33 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5484140ef25ee233/variables" for ::1 at 2016-04-22 12:26:33 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:26:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:26:39 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:26:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:26:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:26:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:26:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:26:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:26:39 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:26:41 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:26:41 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a28cb614dcc57a84/variables" for ::1 at 2016-04-22 12:26:41 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:29:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:29:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:29:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:29:35 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:29:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:29:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:29:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:29:35 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:29:36 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.2ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:29:36 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1b4b6bfbc23c9ab2/variables" for ::1 at 2016-04-22 12:29:37 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:30:51 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 5ms (ActiveRecord: 0.7ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f2883946df02d851/variables" for ::1 at 2016-04-22 12:30:51 -0700 + + +Started GET "/" for ::1 at 2016-04-22 12:30:56 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245972469240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8ac0a252b2078c7b/variables" for ::1 at 2016-04-22 12:30:57 -0700 + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 12:30:57 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245972469240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/caf3257cb0a72191/variables" for ::1 at 2016-04-22 12:30:57 -0700 + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 12:31:34 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/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/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245972469240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ceb0f8644a5041bb/variables" for ::1 at 2016-04-22 12:31:34 -0700 + RailsTaskList Load (1.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 12:31:34 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245972469240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/96110ba888c6dee1/variables" for ::1 at 2016-04-22 12:31:34 -0700 + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 12:31:40 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245972469240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/97bde33f088e4e25/variables" for ::1 at 2016-04-22 12:31:40 -0700 + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 12:32:10 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245972469240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ec3bb9a899dc7b38/variables" for ::1 at 2016-04-22 12:32:10 -0700 + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 12:32:10 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb__2622160174736613945_70245972469240' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1a684b369919d844/variables" for ::1 at 2016-04-22 12:32:10 -0700 + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 12:32:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 12:32:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 12:32:34 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 12:32:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 12:32:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 12:32:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 12:32:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 12:32:34 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:32:36 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 12:32:36 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fb8f96da75da6df5/variables" for ::1 at 2016-04-22 12:32:36 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:00:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (19.9ms) +Completed 200 OK in 82ms (Views: 72.6ms | ActiveRecord: 1.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:00:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:00:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:00:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:00:58 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:00:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:00:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:00:58 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 13:01:03 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 4ms (ActiveRecord: 0.2ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 13:01:03 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 4ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b0e0d9b82fdbc0e0/variables" for ::1 at 2016-04-22 13:01:03 -0700 + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 13:01:11 -0700 + +AbstractController::ActionNotFound - The action 'done' could not be found for TasklistController: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1cba812b01bfc383/variables" for ::1 at 2016-04-22 13:01:11 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:04:27 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (16.0ms) +Completed 200 OK in 263ms (Views: 252.5ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:04:28 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:04:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:04:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:04:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:04:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:04:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:04:28 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:04:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:04:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:04:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:04:29 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:04:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:04:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:04:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:04:29 -0700 + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 13:04:34 -0700 + +AbstractController::ActionNotFound - The action 'done' could not be found for TasklistController: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ac357041e81a389d/variables" for ::1 at 2016-04-22 13:04:34 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:06:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-22 13:06:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:06:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:06:36 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:06:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:06:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:06:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:06:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:06:36 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:07:02 -0700 + +AbstractController::ActionNotFound - The action 'done' could not be found for TasklistController: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/43ad3a53c17788f7/variables" for ::1 at 2016-04-22 13:07:02 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/variables" for ::1 at 2016-04-22 13:07:08 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/variables" for ::1 at 2016-04-22 13:07:15 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/variables" for ::1 at 2016-04-22 13:07:17 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/variables" for ::1 at 2016-04-22 13:07:26 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/eval" for ::1 at 2016-04-22 13:09:00 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/eval" for ::1 at 2016-04-22 13:09:09 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/eval" for ::1 at 2016-04-22 13:09:14 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/eval" for ::1 at 2016-04-22 13:09:26 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/eval" for ::1 at 2016-04-22 13:09:34 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/eval" for ::1 at 2016-04-22 13:09:40 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/eval" for ::1 at 2016-04-22 13:09:49 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/eval" for ::1 at 2016-04-22 13:09:52 -0700 + + +Started POST "/__better_errors/43ad3a53c17788f7/eval" for ::1 at 2016-04-22 13:10:12 -0700 + + +Started GET "/tasklist/2/done" for ::1 at 2016-04-22 13:10:57 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasklist/2/done"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.5ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 13:10:57 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (12.1ms) +Completed 200 OK in 83ms (Views: 60.4ms | ActiveRecord: 1.2ms) + + +Started GET "/tasklist" for ::1 at 2016-04-22 13:10:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:10:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:10:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:11:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:11:01 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:11:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:11:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:11:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:11:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:11:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:11:01 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:11:03 -0700 +Processing by TasklistController#done_why as HTML + Parameters: {"authenticity_token"=>"LCKJ83acjI60lc7o8dB9o6Vmb2gS6Rc+TShCHWrEDT2DTvnbWwr06PjN4T11gn1XuPWRvPTp6QDbDTUSuuneeQ==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: _method, authenticity_token, id +  (0.1ms) begin transaction +  (0.0ms) rollback transaction +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:17:in `done_why' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cec14a2b4282c600/variables" for ::1 at 2016-04-22 13:11:03 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:11:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-22 13:11:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:11:20 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:11:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:11:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:11:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:11:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:11:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:11:20 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:11:22 -0700 + +AbstractController::ActionNotFound - The action 'done' could not be found for TasklistController: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3732e47b78fe847a/variables" for ::1 at 2016-04-22 13:11:22 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:14:31 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"n3+L4LvUV6faOScT+h5nHg4DEwMQVTnec1tHzwn94t8wE/vIlkIvwZZhCMZ+TGfqE5Dt1/ZVx+DlfjDA2dAxmw==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: _method, authenticity_token, id +  (0.1ms) begin transaction +  (0.1ms) rollback transaction +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.6ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:17:in `finished' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/79f992f443a8cae6/variables" for ::1 at 2016-04-22 13:14:31 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:15:55 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-22 13:15:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:15:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:15:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:15:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:15:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:15:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:15:56 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:15:56 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:15:57 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:15:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:15:57 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:15:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:15:57 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:15:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:15:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:15:57 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:15:59 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"/o/aJ4Snok0DMsxqf8LrPepFYwt+33OKq69hPT1A9eZR46oPqTHaK09q47/7kOvJ99ad35jfjbQ9ihYy7W0mog==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `done_edit' for #: + app/controllers/tasklist_controller.rb:17:in `finished' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5e809547de23909a/variables" for ::1 at 2016-04-22 13:15:59 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:16:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 31ms (Views: 28.4ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-22 13:16:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:16:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:16:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:16:22 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:16:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:16:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:16:22 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:16:22 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:16:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:16:23 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:16:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:16:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:16:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:16:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:16:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:16:23 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:16:26 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"rO67mrAOGooFfVma4sbtqTj7RIYJO8OrBCp4HGRybjgDgsuynZhi7Ekldk9mlO1dJWi6Uu87PZWSDw8TtF+9fA==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: _method, authenticity_token, id +  (0.0ms) begin transaction +  (0.1ms) rollback transaction +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms) + +ArgumentError - When assigning attributes, you must pass a hash as an argument.: + activerecord (4.2.6) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' + activerecord (4.2.6) lib/active_record/persistence.rb:251:in `block in update' + 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/persistence.rb:250:in `update' + app/controllers/tasklist_controller.rb:17:in `finished' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9a1dedafdaa6b288/variables" for ::1 at 2016-04-22 13:16:26 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:19:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-22 13:19:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:19:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:19:42 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:19:43 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"EAf30slBRMqDbfx2DplYJm6oGwm9OWtr4l99rtBs2BO/a4f65Nc8rM8106OKy1jSczvl3Vs5lVV0egqhAEELVw==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "rails_task_lists" SET "completion_status" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["completion_status", "done"], ["updated_at", "2016-04-22 20:19:43.950168"], ["id", 2]] +  (1.4ms) commit transaction + Rendered tasklist/new.erb within layouts/application (1.7ms) +Completed 200 OK in 27ms (Views: 22.3ms | ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-22 13:19:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:19:50 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"Ar+yDzA0EglNoKDGkidwXdSzoD4tdK/HTdBnfvtR6aWt08InHaJqbwH4jxMWdXCpySBe6st0Ufnb9RBxK3w64Q==", "id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 12.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-22 13:20:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:20:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:20:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:20:05 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:20:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:20:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:20:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:20:05 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:20:07 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"4gMkSl7GJ9lIEKP84My6nKkB3DSjhUcRXrFDhnTIkzNNb1Ric1BfvwRIjClknrpotJIi4EWFuS/IlDSJpOVAdw==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb___2503526090660524458_70196188670520' + 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/sakne/.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/tasklist_controller.rb:18:in `finished' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/277ca7e397b22ee1/variables" for ::1 at 2016-04-22 13:20:07 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:20:37 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"4gMkSl7GJ9lIEKP84My6nKkB3DSjhUcRXrFDhnTIkzNNb1Ric1BfvwRIjClknrpotJIi4EWFuS/IlDSJpOVAdw==", "id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.7ms) + +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/tasklist_controller.rb:18:in `finished' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3ccb39b2dad7f237/variables" for ::1 at 2016-04-22 13:20:37 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:20:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 27ms (Views: 24.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:20:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:20:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:20:46 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:20:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:20:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:20:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:20:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:20:46 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:21:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:21:05 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:21:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:21:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:21:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:21:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:21:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:21:05 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:21:07 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"mBt3qf1lSdeW6d9FqDk32ffI6XfOm3wF0TZmT+17d5Y3dweB0PMxsdqx8JAsazct6lsXoyibgjtHExFAPVak0g==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.0ms) 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-22 13:21:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 13:21:14 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 13:21:29 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 13:21:29 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/01dc4f388afe3152/variables" for ::1 at 2016-04-22 13:21:30 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 13:21:37 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 13:21:37 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/88aa8a42202404d3/variables" for ::1 at 2016-04-22 13:21:37 -0700 + + +Started GET "/tasklist/Go%20to%20Brunch" for ::1 at 2016-04-22 13:22:16 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"Go to Brunch"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=Go to Brunch: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:39: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4d997f981f126281/variables" for ::1 at 2016-04-22 13:22:16 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:22:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:22:20 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:22:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:22:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:22:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:22:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:22:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:22:20 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:22:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:22:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:22:21 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:22:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:22:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:22:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:22:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:22:21 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:22:23 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (6.7ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/tasklist/show.erb:10:in `_app_views_tasklist_show_erb___3243577551153221561_70196217639360' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:22:23 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (6.8ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/tasklist/show.erb:10:in `_app_views_tasklist_show_erb___3243577551153221561_70196216749020' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7d965208cd30622c/variables" for ::1 at 2016-04-22 13:22:23 -0700 + + +Started POST "/__better_errors/7d965208cd30622c/eval" for ::1 at 2016-04-22 13:22:32 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:28:42 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (32.6ms) +Completed 500 Internal Server Error in 45ms (ActiveRecord: 0.5ms) + +NameError - undefined local variable or method `task' for #<#:0x007fafa59fa090>: + app/views/tasklist/show.erb:11:in `_app_views_tasklist_show_erb___3243577551153221561_70196187090660' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f8b974a56bacf21c/variables" for ::1 at 2016-04-22 13:28:43 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:28:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:28:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:28:46 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:28:48 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"ZQjfN9sswZ8AyZnfICZxspauFBDcobiXLa0jrVFNIofKZK8f9rq5+UyRtgqkdHFGiz3qxDqhRqm7iFSigWDxww==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.0ms) 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-22 13:28:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:28:49 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (25.9ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007fafa90b25b0>: + app/views/tasklist/show.erb:11:in `_app_views_tasklist_show_erb___3243577551153221561_70196216037460' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:28:50 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (31.2ms) +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007fafa4994570>: + app/views/tasklist/show.erb:11:in `_app_views_tasklist_show_erb___3243577551153221561_70196187090660' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/13aa53d3344d4ceb/variables" for ::1 at 2016-04-22 13:28:50 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:29:33 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:29:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:29:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:29:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:29:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:29:33 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:29:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:29:33 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:31:26 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:31:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:31:26 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:31:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:31:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:31:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:31:26 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:31:26 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:31:28 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:31:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:31:28 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:31:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:31:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:31:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:31:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:31:28 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:31:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.5ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:31:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:31:40 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:31:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:31:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:31:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:31:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:31:40 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:31:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 13:31:43 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-22 13:31:56 -0700 +Processing by TasklistController#new as HTML + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 13:32:03 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:32:11 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"AAQsouIxv2yUS/Qp0iRJs3pUKcdo8qIkVBdTiCU6XZivaFyKz6fHCtgT2/xWdklHZ8fXE47yXBrCMiSH9ReO3A==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (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-22 13:32:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/3/done" for ::1 at 2016-04-22 13:32:13 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"NlJA/Rnvm6OGuOq2jDVTSW8nW/E9PvULr+ZKKIZ/xgCZPjDVNHnjxcrgxWMIZ1O9crSlJds+CzU5wz0nVlIVRA==", "id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "rails_task_lists" SET "completion_status" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["completion_status", "done"], ["updated_at", "2016-04-22 20:32:13.796739"], ["id", 3]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-04-22 13:32:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.2ms) + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreatePeople (20160422204902) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  + SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160422204902"]] +  (0.7ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:55:07 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.9ms) +Completed 200 OK in 51ms (Views: 36.0ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-22 13:57:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 35ms (Views: 33.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:57:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:57:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:57:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:57:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:57:32 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:57:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:57:32 -0700 + + +Started GET "/" for ::1 at 2016-04-22 13:57:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 13:57:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 13:57:33 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 13:57:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 13:57:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 13:57:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 13:57:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 13:57:33 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:57:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:59:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 31ms (Views: 28.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 13:59:17 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 13:59:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 13:59:23 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (2.2ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-22 13:59:29 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"F7Tus0sBl3CAtElWDuvmrka8RePbDCqwsztYHkMMIdW42J6bZpfvFszsZoOKueZaWy+7Nz0M1I4lHi8RkyHykQ==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 13:59:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 14:00:06 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tSTRING_DEND, expecting ')' + '.freeze;@output_buffer.append=( link_to 'Delete',done(task.id}, + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...a: { confirm: 'Are you sure?' } );@output_buffer.safe_append... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:40: syntax error, unexpected keyword_ensure, expecting ')' +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:42: syntax error, unexpected keyword_end, expecting ')': + app/views/tasklist/index.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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/15a20f8c5c1747df/variables" for ::1 at 2016-04-22 14:00:06 -0700 + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 14:00:27 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tSTRING_DEND, expecting ')' +..._to 'Delete',done_path(task.id}, +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...a: { confirm: 'Are you sure?' } );@output_buffer.safe_append... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:40: syntax error, unexpected keyword_ensure, expecting ')' +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:42: syntax error, unexpected keyword_end, expecting ')': + app/views/tasklist/index.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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ff5cf07665c94af6/variables" for ::1 at 2016-04-22 14:00:27 -0700 + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 14:00:28 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tSTRING_DEND, expecting ')' +..._to 'Delete',done_path(task.id}, +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...a: { confirm: 'Are you sure?' } );@output_buffer.safe_append... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:40: syntax error, unexpected keyword_ensure, expecting ')' +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:42: syntax error, unexpected keyword_end, expecting ')': + app/views/tasklist/index.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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1b79003fd694fc07/variables" for ::1 at 2016-04-22 14:00:28 -0700 + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 14:00:43 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tSTRING_DEND, expecting ')' +...o 'Delete',delete_path(task.id}, +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...a: { confirm: 'Are you sure?' } );@output_buffer.safe_append... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:40: syntax error, unexpected keyword_ensure, expecting ')' +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:42: syntax error, unexpected keyword_end, expecting ')': + app/views/tasklist/index.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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/73f03907e04b2713/variables" for ::1 at 2016-04-22 14:00:43 -0700 + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 14:00:44 -0700 +Processing by TasklistController#index as HTML + Rendered tasklist/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tSTRING_DEND, expecting ')' +...o 'Delete',delete_path(task.id}, +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting '}' +...a: { confirm: 'Are you sure?' } );@output_buffer.safe_append... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:40: syntax error, unexpected keyword_ensure, expecting ')' +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/index.html.erb:42: syntax error, unexpected keyword_end, expecting ')': + app/views/tasklist/index.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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5b104fd814bc8958/variables" for ::1 at 2016-04-22 14:00:44 -0700 + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + + +Started GET "/" for ::1 at 2016-04-22 14:01:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 14:01:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 14:01:24 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 14:01:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 14:01:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:01:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 14:01:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 14:01:24 -0700 + + +Started GET "/tasklist/4" for ::1 at 2016-04-22 14:02:37 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.2ms) + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + 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 (1.0ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "The First Task"], ["description", "Get up and dress"], ["completion_status", "almost done"], ["completed_at", "2002-02-11 08:43:13 -0800"], ["created_at", "2016-04-22 21:24:12.692152"], ["updated_at", "2016-04-22 21:24:12.692152"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Brunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-22 21:24:12.697532"], ["updated_at", "2016-04-22 21:24:12.697532"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", "With Family"], ["completion_status", "almost done"], ["completed_at", "1976-07-17 12:51:07 -0700"], ["created_at", "2016-04-22 21:24:12.699795"], ["updated_at", "2016-04-22 21:24:12.699795"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-22 21:24:12.701797"], ["updated_at", "2016-04-22 21:24:12.701797"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", "with friends"], ["completion_status", "almost done"], ["completed_at", "1975-12-05 20:53:45 -0800"], ["created_at", "2016-04-22 21:24:12.704202"], ["updated_at", "2016-04-22 21:24:12.704202"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", " Or not"], ["completion_status", "almost done"], ["completed_at", "1989-02-11 13:14:52 -0800"], ["created_at", "2016-04-22 21:24:12.706308"], ["updated_at", "2016-04-22 21:24:12.706308"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", "In neighbors back yard"], ["completed_at", "2011-09-18 09:27:07 -0700"], ["created_at", "2016-04-22 21:24:12.709266"], ["updated_at", "2016-04-22 21:24:12.709266"]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Call Mom"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-22 21:24:12.712115"], ["updated_at", "2016-04-22 21:24:12.712115"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "She worries, you know"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-22 21:24:12.714360"], ["updated_at", "2016-04-22 21:24:12.714360"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Nap"], ["description", "Yesss!"], ["completion_status", "almost done"], ["completed_at", "1991-12-15 06:44:42 -0800"], ["created_at", "2016-04-22 21:24:12.716600"], ["updated_at", "2016-04-22 21:24:12.716600"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Honoure Afflect"], ["description", ""], ["created_at", "2016-04-22 21:24:12.722552"], ["updated_at", "2016-04-22 21:24:12.722552"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "William Adolphus"], ["description", ""], ["created_at", "2016-04-22 21:24:12.724870"], ["updated_at", "2016-04-22 21:24:12.724870"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Edith Teisilian Ethelena"], ["description", ""], ["created_at", "2016-04-22 21:24:12.726878"], ["updated_at", "2016-04-22 21:24:12.726878"]] +  (0.6ms) commit transaction + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to AddColumnPeopleAndTasks (20160422212851) +  (0.1ms) begin transaction +  (1.1ms) ALTER TABLE "rails_task_lists" ADD "person_id" interger + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160422212851"]] +  (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" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + + +Started GET "/" for ::1 at 2016-04-22 14:40:11 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (28.8ms) +Completed 200 OK in 71ms (Views: 64.2ms | ActiveRecord: 1.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 14:40:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 14:40:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 14:40:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 14:40:11 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 14:40:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 14:40:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:40:11 -0700 + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 14:40:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 14:41:06 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasklist/36" for ::1 at 2016-04-22 14:41:38 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"XIe4V5MCqTb9g9clIUIfiBRNhIF/tQHzefJtgvCnCJDz68h/vpTRULHb+PClEB98Cd56VZm1/83v1xqNIIrb1A==", "id"=>"36"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 36]] +  (0.1ms) begin transaction + SQL (1.0ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 36]] +  (0.6ms) 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:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (10.0ms) +Completed 200 OK in 40ms (Views: 38.7ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasklist/35" for ::1 at 2016-04-22 14:41:45 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"2pFviw/JuFOo0np7erIBhIRdOCkW5YpDORv6gjtJgCN1/R+jIl/ANeSKVa7+4AFwmc7G/fDldH2vPo2N62RTZw==", "id"=>"35"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 35]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 35]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-22 14:41:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.2ms) + Person Load (0.9ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] +  (0.2ms) begin transaction +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) rollback transaction + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 1], ["updated_at", "2016-04-22 21:52:53.168681"], ["id", 2]] +  (0.6ms) commit transaction + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + + +Started GET "/" for ::1 at 2016-04-22 15:09:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (26.5ms) +Completed 200 OK in 68ms (Views: 56.0ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:09:11 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:09:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:09:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:09:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:09:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:09:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:09:11 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:09:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:09:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:09:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:09:12 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:09:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:09:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:09:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:09:12 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:09:14 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (7.2ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:5:in `_app_views_tasklist_show_erb___3243577551153221561_70196199426860' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:09:14 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (16.0ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:5:in `_app_views_tasklist_show_erb___3243577551153221561_70196181644040' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7c1d84f7deca8bd0/variables" for ::1 at 2016-04-22 15:09:14 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:10:50 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:10:50 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:10:50 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:10:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:10:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:10:50 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:10:50 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:10:50 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:15:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:15:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:15:17 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:15:19 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:15:24 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (9.5ms) +Completed 200 OK in 28ms (Views: 20.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:15:59 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (16.9ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `Person' for # +Did you mean? person + person=: + 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/tasklist/new.erb:9:in `block in _app_views_tasklist_new_erb__152629273972609754_70196181655660' + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb__152629273972609754_70196181655660' + 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/sakne/.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/tasklist_controller.rb:26: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ba01a22a829d4859/variables" for ::1 at 2016-04-22 15:15:59 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:16:12 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.0ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:16:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:16:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:16:12 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:16:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:16:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:16:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:16:12 -0700 + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 15:16:25 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Wk+UJ+vsTmLQn0an7AFPDjvPDOpRDUAeatJG2Iw2j4n1I+QPxno2BJzHaXJoU0/6JlzyPrcNviD89zHXXBtczQ==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends good and family", "person_id"=>"1"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameter: person_id +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:16:25 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:22:11 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 42ms (Views: 40.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:22:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:22:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:22:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:22:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:22:11 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:22:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:22:11 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:22:35 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (20.3ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `name' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/tasklist/index.html.erb:28:in `block in _app_views_tasklist_index_html_erb___2503526090660524458_70196202646380' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb___2503526090660524458_70196202646380' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4b84d1116e14b459/variables" for ::1 at 2016-04-22 15:22:35 -0700 + + +Started POST "/__better_errors/4b84d1116e14b459/eval" for ::1 at 2016-04-22 15:22:59 -0700 + + +Started POST "/__better_errors/4b84d1116e14b459/eval" for ::1 at 2016-04-22 15:23:10 -0700 + + +Started POST "/__better_errors/4b84d1116e14b459/eval" for ::1 at 2016-04-22 15:23:14 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:25:51 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (17.9ms) +Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `Person' for # +Did you mean? person + person=: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/tasklist/index.html.erb:28:in `block in _app_views_tasklist_index_html_erb___2503526090660524458_70196171303760' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb___2503526090660524458_70196171303760' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/02c8fe456cc00e7c/variables" for ::1 at 2016-04-22 15:25:52 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:27:47 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (14.1ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `name' for 1:Fixnum: + app/views/tasklist/index.html.erb:28:in `block in _app_views_tasklist_index_html_erb___2503526090660524458_70196181316380' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb___2503526090660524458_70196181316380' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/945cf60054800fbf/variables" for ::1 at 2016-04-22 15:27:47 -0700 + + +Started POST "/__better_errors/945cf60054800fbf/eval" for ::1 at 2016-04-22 15:27:52 -0700 + + +Started POST "/__better_errors/945cf60054800fbf/eval" for ::1 at 2016-04-22 15:27:53 -0700 + + +Started POST "/__better_errors/945cf60054800fbf/eval" for ::1 at 2016-04-22 15:27:57 -0700 + + +Started POST "/__better_errors/945cf60054800fbf/eval" for ::1 at 2016-04-22 15:28:01 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:28:50 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:28:50 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:28:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:28:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:28:50 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:28:50 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:28:50 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:28:50 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:28:57 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.9ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:29:55 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.4ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 15:30:01 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"2esuIyfAyBAc/kdXbbD0uddySOk++N+lIv4ITxZLXiB2h14LClawdlCmaILp4vRNyuG2Pdj4IZu0239AxmaNZA==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends good and family", "person_id"=>"3"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameter: person_id +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:30:01 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 47ms (Views: 46.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:30:06 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.3ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 15:30:07 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"bQoAqV3qg/IQJlSLAyC60Fk7ikf3y21x7uJeDnar7MzCZnCBcHz7lFx+e16HcrokRKh0kxHLk094xykBpoY/iA==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends good and family", "person_id"=>""}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameter: person_id +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:30:07 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:30:08 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.6ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 15:30:14 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"XCqItUmYoliFbX5uOEk6AE4thDCg9nveh+RDsOnmC3nzRvidZA7aPsk1Ubu8Gzr0U7565Eb2heARwTS/OcvYPQ==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends good and family", "person_id"=>"2"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameter: person_id +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 4ms (ActiveRecord: 0.2ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:30:14 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:31:21 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 41ms (Views: 37.8ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:31:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:31:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:31:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:31:21 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:31:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:31:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:31:21 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:31:22 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:31:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:31:22 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:31:22 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:31:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:31:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:31:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:31:22 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:31:23 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (5.2ms) +Completed 200 OK in 23ms (Views: 17.7ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 15:31:27 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"n+XnZw1yYpbhQmFlMi8DA/DFNEI29/79mo6wWqFsh6EwiZdPIOQa8K0aTrC2fQP37VbKltD3AMMMq8dVcUFU5Q==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends good and family", "person_id"=>"2"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 2], ["updated_at", "2016-04-22 22:31:27.580459"], ["id", 2]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 7ms (ActiveRecord: 1.8ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:31:27 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:32:15 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (16.6ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `name' for #: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/tasklist/index.html.erb:28:in `block in _app_views_tasklist_index_html_erb___2503526090660524458_70196200370680' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb___2503526090660524458_70196200370680' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d0b0acf443cc16c8/variables" for ::1 at 2016-04-22 15:32:15 -0700 + + +Started POST "/__better_errors/d0b0acf443cc16c8/eval" for ::1 at 2016-04-22 15:32:25 -0700 + + +Started POST "/__better_errors/d0b0acf443cc16c8/eval" for ::1 at 2016-04-22 15:32:44 -0700 + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + + +Started POST "/__better_errors/d0b0acf443cc16c8/eval" for ::1 at 2016-04-22 15:33:03 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:33:15 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (13.4ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/index.html.erb:28:in `block in _app_views_tasklist_index_html_erb___2503526090660524458_70196166500100' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb___2503526090660524458_70196166500100' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ed7e99d6a496bc1a/variables" for ::1 at 2016-04-22 15:33:15 -0700 + + +Started POST "/__better_errors/ed7e99d6a496bc1a/eval" for ::1 at 2016-04-22 15:33:34 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:34:37 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (13.2ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/index.html.erb:28:in `block in _app_views_tasklist_index_html_erb___2503526090660524458_70196166500100' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb___2503526090660524458_70196166500100' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2102a6fe2e54cbd1/variables" for ::1 at 2016-04-22 15:34:37 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:34:39 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.5ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:34:44 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (12.6ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/index.html.erb:28:in `block in _app_views_tasklist_index_html_erb___2503526090660524458_70196166500100' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb___2503526090660524458_70196166500100' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e8dc09b5eb73c4cc/variables" for ::1 at 2016-04-22 15:34:44 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:36:16 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (13.7ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/index.html.erb:28:in `block in _app_views_tasklist_index_html_erb___2503526090660524458_70196166500100' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:7:in `_app_views_tasklist_index_html_erb___2503526090660524458_70196166500100' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/bb9a28e068dba25c/variables" for ::1 at 2016-04-22 15:36:16 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:39:03 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (3.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.5ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (18.2ms) +Completed 200 OK in 142ms (Views: 113.3ms | ActiveRecord: 4.5ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:43:31 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (10.8ms) +Completed 200 OK in 47ms (Views: 46.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:43:32 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:43:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:43:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:43:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:43:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:43:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:43:32 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 15:43:46 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 15:43:49 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7CmijjU96JUPrithRkRgR/uoKaPpftnD5YvHZNG5csFDRdKmGKuQ80P2BLTCFmCz5jvXdw9+J/1zrrBrAZShhQ==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends good and family", "person_id"=>"2"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.3ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 6ms (ActiveRecord: 0.4ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:43:49 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:44:06 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.8ms) +Completed 200 OK in 31ms (Views: 29.6ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:44:06 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:44:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:44:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:44:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:44:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:44:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:44:06 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:44:28 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:44:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:44:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:44:28 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:44:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:44:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:44:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:44:28 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:45:20 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:45:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:45:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:45:20 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:45:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:45:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:45:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:45:20 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:45:42 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:45:42 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:45:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:45:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:45:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:45:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:45:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:45:42 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:45:43 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 15:45:43 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:45:43 -0700 + + +Started GET "/tasklist/5/edit" for ::1 at 2016-04-22 15:45:49 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasklist/5" for ::1 at 2016-04-22 15:45:54 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"CS1V6f8MUwo1NBRK8ubkUKqfgyQUpiU2hYWspOVoMVKmQSXB0porbHlsO592tOSktwx98PKm2wgToNurNUXiFg==", "rails_task_list"=>{"title"=>"Play Video Games", "description"=>"with friends", "person_id"=>"1"}, "commit"=>"Update Rails task list", "id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.0ms) begin transaction + SQL (0.7ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 1], ["updated_at", "2016-04-22 22:45:54.261171"], ["id", 5]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasklist.5 +Completed 302 Found in 5ms (ActiveRecord: 1.4ms) + + +Started GET "/tasklist.5" for ::1 at 2016-04-22 15:45:54 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Rendered tasklist/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist.5" for ::1 at 2016-04-22 15:46:49 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Rendered tasklist/index.html.erb within layouts/application (8.2ms) +Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:46:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:46:50 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:46:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:46:50 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:46:50 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:46:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:46:50 -0700 + + +Started GET "/tasklist/8/edit" for ::1 at 2016-04-22 15:46:57 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.2ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasklist/8" for ::1 at 2016-04-22 15:47:00 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"4fa/OvQeF7bowDs2iCL1oJrB5Pn39mrWUty0epVTFghOms8S2Yhv0KSYFOMMcPVUh1IaLRH2lOjE+cN1RX7FTA==", "rails_task_list"=>{"title"=>"Call Mom or else", "description"=>"Or else and we can eat", "person_id"=>"3"}, "commit"=>"Update Rails task list", "id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 3], ["updated_at", "2016-04-22 22:47:00.873009"], ["id", 8]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasklist.8 +Completed 302 Found in 5ms (ActiveRecord: 1.5ms) + + +Started GET "/tasklist.8" for ::1 at 2016-04-22 15:47:00 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:47:25 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:47:47 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.4ms) +Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:47:50 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 15:49:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-22 15:50:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:50:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:50:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:50:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:50:19 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:50:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:50:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:50:19 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:50:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:50:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:50:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:50:20 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:50:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:50:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:50:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:50:20 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:50:22 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:50:30 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:50:30 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:50:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:50:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:50:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:50:30 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:50:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:50:30 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:51:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:51:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:51:39 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:51:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:51:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:51:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:51:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:51:39 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:51:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 15:51:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 15:51:40 -0700 + + +Started GET "/assets/application.self-c59795f658bc3d6c5e7484422bf5b0c0a99fdde3dc0b3c85d622a89ef008ec29.css?body=1" for ::1 at 2016-04-22 15:51:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 15:51:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 15:51:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 15:51:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 15:51:40 -0700 + + +Started GET "/" for ::1 at 2016-04-22 15:51:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.7ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 15:51:45 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 15:55:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-22 16:06:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (11.1ms) +Completed 200 OK in 51ms (Views: 49.6ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:06:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:06:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:06:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:06:31 -0700 + + +Started GET "/assets/application.self-2788aad767b3169f94707acd8e5b56f968b43a3593eb1c4ff60b2e2b4ad01da8.css?body=1" for ::1 at 2016-04-22 16:06:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:06:31 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:06:31 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:09:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.2ms) +Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:09:37 -0700 + + +Started GET "/assets/application.self-2788aad767b3169f94707acd8e5b56f968b43a3593eb1c4ff60b2e2b4ad01da8.css?body=1" for ::1 at 2016-04-22 16:09:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:09:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:09:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:09:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:09:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:09:37 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:12:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:12:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:12:42 -0700 + + +Started GET "/assets/application.self-742d41f546d63ccfb3958c5162239f56486611171a02b8c55f686555a1b2d988.css?body=1" for ::1 at 2016-04-22 16:12:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:12:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:12:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:12:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:12:42 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:12:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (10.5ms) +Completed 200 OK in 38ms (Views: 36.8ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:12:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:12:52 -0700 + + +Started GET "/assets/application.self-162379308961a3d3af17b742590e8e548eb8fbda3a354258726b921231c825e1.css?body=1" for ::1 at 2016-04-22 16:12:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:12:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:12:52 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:12:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:12:52 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:13:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:13:02 -0700 + + +Started GET "/assets/application.self-508c88bd77cdd5d638848c1c2ac9585605fb285f8a6dd1fbe123aed555d351e2.css?body=1" for ::1 at 2016-04-22 16:13:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:13:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:13:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:13:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:13:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:13:03 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:16:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:16:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:16:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:16:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:16:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:16:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:16:02 -0700 + + +Started GET "/assets/application.self-a2e376a2699ce1898fa6940496fd2c256ea7dd163cf80064687295dde7d74623.css?body=1" for ::1 at 2016-04-22 16:16:02 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-22 16:16:22 -0700 +Processing by TasklistController#new as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.2ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 16:19:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (30.3ms) +Completed 200 OK in 98ms (Views: 90.3ms | ActiveRecord: 1.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:19:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:19:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:19:37 -0700 + + +Started GET "/assets/application.self-3eb74e9ec11e15b8c5d62bedb7e71263fc221a6f1662a24ef2b2e848db80f779.css?body=1" for ::1 at 2016-04-22 16:19:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:19:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:19:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:19:37 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:19:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.3ms) 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:19:39 -0700 + + +Started GET "/assets/application.self-3eb74e9ec11e15b8c5d62bedb7e71263fc221a6f1662a24ef2b2e848db80f779.css?body=1" for ::1 at 2016-04-22 16:19:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:19:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:19:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:19:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:19:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:19:39 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:20:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (10.8ms) +Completed 200 OK in 54ms (Views: 52.8ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:20:01 -0700 + + +Started GET "/assets/application.self-756303b4409c7806422af55d263333d53fb33ba923c7defff5e70004ed7088cf.css?body=1" for ::1 at 2016-04-22 16:20:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:20:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:20:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:20:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:20:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:20:01 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:20:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-756303b4409c7806422af55d263333d53fb33ba923c7defff5e70004ed7088cf.css?body=1" for ::1 at 2016-04-22 16:20:04 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:20:04 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:20:04 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:20:04 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:20:04 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:20:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:20:04 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:23:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (11.8ms) +Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/application.self-756303b4409c7806422af55d263333d53fb33ba923c7defff5e70004ed7088cf.css?body=1" for ::1 at 2016-04-22 16:23:37 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:28:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (29.7ms) +Completed 200 OK in 153ms (Views: 144.4ms | ActiveRecord: 1.6ms) + + +Started GET "/assets/application.self-e502d22e76636bc72af1d30271616017513ec04c08e01ed2f4c205fd9159eec2.css?body=1" for ::1 at 2016-04-22 16:28:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:28:10 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:28:10 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:28:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:28:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:28:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:28:10 -0700 + + +Started GET "/assets/face.png" for ::1 at 2016-04-22 16:28:10 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:28:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-e502d22e76636bc72af1d30271616017513ec04c08e01ed2f4c205fd9159eec2.css?body=1" for ::1 at 2016-04-22 16:28:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:28:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:28:11 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:28:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:28:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:28:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:28:11 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:28:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (14.0ms) +Completed 200 OK in 47ms (Views: 45.7ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/application.self-e502d22e76636bc72af1d30271616017513ec04c08e01ed2f4c205fd9159eec2.css?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:28:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/assets/application.self-e502d22e76636bc72af1d30271616017513ec04c08e01ed2f4c205fd9159eec2.css?body=1" for ::1 at 2016-04-22 16:28:14 -0700 + + +Started GET "/" for ::1 at 2016-04-22 16:28:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.1ms) +Completed 200 OK in 28ms (Views: 26.8ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:28:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:28:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:28:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:28:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:28:46 -0700 + + +Started GET "/assets/application.self-2c96481d88882886a527f6e120ffd30470996ce1476e9f87aa2af57e77bf2810.css?body=1" for ::1 at 2016-04-22 16:28:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:28:46 -0700 + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 16:28:46 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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 (102.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (53.9ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (2.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (128.9ms) + + +Started GET "/" for ::1 at 2016-04-22 16:28:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:28:58 -0700 + + +Started GET "/assets/application.self-54dd9574d21b21573d586ba2ca48cb2e331ea5686d5a198a1b50004ee06d3cf4.css?body=1" for ::1 at 2016-04-22 16:28:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:28:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:28:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:28:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:28:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:28:58 -0700 + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 16:28:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) + Rendered /Users/sakne/.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 (104.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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 (1.4ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (53.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.2ms) + + +Started GET "/" for ::1 at 2016-04-22 16:38:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:38:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:38:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:38:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:38:23 -0700 + + +Started GET "/assets/application.self-2c96481d88882886a527f6e120ffd30470996ce1476e9f87aa2af57e77bf2810.css?body=1" for ::1 at 2016-04-22 16:38:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:38:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:38:23 -0700 + + +Started PATCH "/tasklist/8/done" for ::1 at 2016-04-22 16:39:50 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"T37y8CkN1K0p3jC2M1aItBqVdMWDMMcwh57aOCEgv7KZu5YWEVw66c6EtrG9456DKxCoGqStIxmFQg4iBEXUmg==", "id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction + SQL (1.7ms) UPDATE "rails_task_lists" SET "completion_status" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["completion_status", "done"], ["updated_at", "2016-04-22 23:39:50.524126"], ["id", 8]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-04-22 16:39:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.7ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 16:39:54 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 16:39:57 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.8ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasklist/34" for ::1 at 2016-04-22 16:40:09 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"u2YG4MTZG4ebRegloGWt6+ESgra+7M8QItKclqOxUQNto2IG/Ij1w3wfbiIu0Lvc0JdeaZlxKzkgDkiMhtQ6Kw==", "id"=>"34"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 34]] +  (0.1ms) begin transaction + SQL (0.5ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 34]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for ::1 at 2016-04-22 16:40:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (9.2ms) +Completed 200 OK in 35ms (Views: 33.9ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-22 21:13:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (17.0ms) +Completed 200 OK in 57ms (Views: 52.6ms | ActiveRecord: 1.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:13:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:13:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:13:56 -0700 + + +Started GET "/assets/application.self-2c96481d88882886a527f6e120ffd30470996ce1476e9f87aa2af57e77bf2810.css?body=1" for ::1 at 2016-04-22 21:13:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:13:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:13:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:13:56 -0700 + + +Started GET "/" for ::1 at 2016-04-22 21:30:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (39.0ms) +Completed 200 OK in 123ms (Views: 110.7ms | ActiveRecord: 1.8ms) + + +Started GET "/assets/application.self-ecfc7ba7072359075ee1305e0936935d967c9b12dd38808e6f112b3faf332eac.css?body=1" for ::1 at 2016-04-22 21:30:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:30:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:30:41 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:30:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:30:41 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:30:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:30:41 -0700 + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 21:30:41 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.4ms) + Rendered /Users/sakne/.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 (196.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (124.8ms) + + +Started GET "/" for ::1 at 2016-04-22 21:30:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-ecfc7ba7072359075ee1305e0936935d967c9b12dd38808e6f112b3faf332eac.css?body=1" for ::1 at 2016-04-22 21:30:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:30:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:30:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:30:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:30:42 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:30:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:30:42 -0700 + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:30:51 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (5.1ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___3243577551153221561_70196166175440' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:30:51 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (4.1ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___3243577551153221561_70196216119720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c576f742dc825293/variables" for ::1 at 2016-04-22 21:30:51 -0700 + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:31:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (4.1ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___3243577551153221561_70196216119720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a082f9a8c28d2789/variables" for ::1 at 2016-04-22 21:31:27 -0700 + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:33:04 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (5.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (14.1ms) +Completed 500 Internal Server Error in 59ms (ActiveRecord: 5.5ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145510490480' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e32530db035e2cea/variables" for ::1 at 2016-04-22 21:33:04 -0700 + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:33:31 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145536837900' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:33:31 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145510490480' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/46e3128a9f2398ad/variables" for ::1 at 2016-04-22 21:33:31 -0700 + + +Started GET "/" for ::1 at 2016-04-22 21:35:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (21.2ms) +Completed 200 OK in 313ms (Views: 310.5ms | ActiveRecord: 1.4ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:35:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/3" for ::1 at 2016-04-22 21:35:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (5.7ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145537744380' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/3" for ::1 at 2016-04-22 21:35:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (5.6ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145543074840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f0c85d7cad47f13f/variables" for ::1 at 2016-04-22 21:35:34 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:35:58 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (2.2ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-22 21:36:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/5" for ::1 at 2016-04-22 21:36:06 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/8" for ::1 at 2016-04-22 21:36:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:36:15 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/33" for ::1 at 2016-04-22 21:36:20 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"33"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasklist/show.erb within layouts/application (3.6ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145537744380' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/33" for ::1 at 2016-04-22 21:36:20 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"33"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasklist/show.erb within layouts/application (3.9ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145543074840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/66dc65b7c90a4e0b/variables" for ::1 at 2016-04-22 21:36:20 -0700 + + +Started GET "/tasklist/33" for ::1 at 2016-04-22 21:37:28 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"33"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasklist/show.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145537744380' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/33" for ::1 at 2016-04-22 21:37:28 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"33"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 33]] + Rendered tasklist/show.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145543074840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2aa3668b9b559a51/variables" for ::1 at 2016-04-22 21:37:29 -0700 + + +Started GET "/tasklist/4" for ::1 at 2016-04-22 21:37:46 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/show.erb within layouts/application (4.7ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145537744380' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/4" for ::1 at 2016-04-22 21:37:46 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/show.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145543074840' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6874e9eb97be5035/variables" for ::1 at 2016-04-22 21:37:46 -0700 + + +Started GET "/tasklist/4" for ::1 at 2016-04-22 21:38:45 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/show.erb within layouts/application (3.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145540791880' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7c88ec1dbbe36746/variables" for ::1 at 2016-04-22 21:38:45 -0700 + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:38:55 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (3.5ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145562331860' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:38:55 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (2.6ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145540791880' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/16fc4dd8658b9975/variables" for ::1 at 2016-04-22 21:38:55 -0700 + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:40:59 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (4.5ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145558041720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4d324ad519f1e0d5/variables" for ::1 at 2016-04-22 21:40:59 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:41:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 21:41:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:41:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:41:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:41:08 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:41:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:41:08 -0700 + + +Started GET "/assets/application.self-ecfc7ba7072359075ee1305e0936935d967c9b12dd38808e6f112b3faf332eac.css?body=1" for ::1 at 2016-04-22 21:41:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:41:08 -0700 + + +Started GET "/" for ::1 at 2016-04-22 21:41:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/application.self-ecfc7ba7072359075ee1305e0936935d967c9b12dd38808e6f112b3faf332eac.css?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/" for ::1 at 2016-04-22 21:41:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/application.self-ecfc7ba7072359075ee1305e0936935d967c9b12dd38808e6f112b3faf332eac.css?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:41:09 -0700 + + +Started GET "/tasklist/27" for ::1 at 2016-04-22 21:41:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"27"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasklist/show.erb within layouts/application (3.8ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145543613420' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/27" for ::1 at 2016-04-22 21:41:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"27"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasklist/show.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145558041720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e2f9dfcc37d6a682/variables" for ::1 at 2016-04-22 21:41:27 -0700 + + +Started GET "/" for ::1 at 2016-04-22 21:42:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:42:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:42:16 -0700 + + +Started GET "/assets/application.self-ecfc7ba7072359075ee1305e0936935d967c9b12dd38808e6f112b3faf332eac.css?body=1" for ::1 at 2016-04-22 21:42:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:42:16 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:42:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:42:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:42:16 -0700 + + +Started GET "/" for ::1 at 2016-04-22 21:42:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:42:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:42:17 -0700 + + +Started GET "/assets/application.self-ecfc7ba7072359075ee1305e0936935d967c9b12dd38808e6f112b3faf332eac.css?body=1" for ::1 at 2016-04-22 21:42:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:42:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:42:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:42:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:42:17 -0700 + + +Started GET "/" for ::1 at 2016-04-22 21:42:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:42:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:42:18 -0700 + + +Started GET "/assets/application.self-ecfc7ba7072359075ee1305e0936935d967c9b12dd38808e6f112b3faf332eac.css?body=1" for ::1 at 2016-04-22 21:42:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:42:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:42:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:42:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:42:18 -0700 + + +Started GET "/tasklist/4" for ::1 at 2016-04-22 21:42:23 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/show.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145559396780' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/4" for ::1 at 2016-04-22 21:42:23 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/show.erb within layouts/application (3.4ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145516603580' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/793cc09b8115c70e/variables" for ::1 at 2016-04-22 21:42:23 -0700 + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:42:41 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145559396780' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:42:41 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/tasklist/show.erb:17:in `_app_views_tasklist_show_erb___1782677290584340498_70145516603580' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3eee4e062ac5a663/variables" for ::1 at 2016-04-22 21:42:41 -0700 + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 21:43:32 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:43:32 -0700 + + +Started GET "/assets/application.self-ecfc7ba7072359075ee1305e0936935d967c9b12dd38808e6f112b3faf332eac.css?body=1" for ::1 at 2016-04-22 21:43:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:43:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:43:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:43:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:43:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:43:32 -0700 + + +Started GET "/tasklist/27" for ::1 at 2016-04-22 21:43:36 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"27"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasklist/show.erb within layouts/application (0.6ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 21:44:27 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.7ms) +Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/application.self-f94cb768598c91f7986d583f8b0ea0f94f97dfde46cec78d4c3e5a1a7763582c.css?body=1" for ::1 at 2016-04-22 21:44:27 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:44:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:44:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:44:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:44:27 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:44:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:44:27 -0700 + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 21:44:27 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.7ms) + Rendered /Users/sakne/.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/sakne/.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 (114.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (106.0ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:44:28 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:44:30 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:44:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:44:30 -0700 + + +Started GET "/assets/application.self-f94cb768598c91f7986d583f8b0ea0f94f97dfde46cec78d4c3e5a1a7763582c.css?body=1" for ::1 at 2016-04-22 21:44:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:44:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:44:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:44:30 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:44:30 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:45:21 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-dcc2a36958b54ee92b4b809df24ed3e14a9995ecf45cf52bc6c73978a5f92c1c.css?body=1" for ::1 at 2016-04-22 21:45:21 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:45:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:45:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:45:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:45:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:45:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:45:21 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:46:53 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:46:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:46:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:46:53 -0700 + + +Started GET "/assets/application.self-f6c0a571550f1980b89b969550d70229c77c40ccf2f8fb6d82af848ea20b52b3.css?body=1" for ::1 at 2016-04-22 21:46:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:46:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:46:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:46:53 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:47:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:47:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:47:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:47:05 -0700 + + +Started GET "/assets/application.self-646f2934d46a78621c8c1643958d9d644dc05b17516f0979adae622dafe0fabe.css?body=1" for ::1 at 2016-04-22 21:47:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:47:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:47:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:47:05 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:47:47 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-9dc61837683243608c2c118b41109c0dc48da62f4a1f6e34b796f871e0f3d0a7.css?body=1" for ::1 at 2016-04-22 21:47:47 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:47:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:47:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:47:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:47:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:47:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:47:47 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:47:48 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:47:48 -0700 + + +Started GET "/assets/application.self-9dc61837683243608c2c118b41109c0dc48da62f4a1f6e34b796f871e0f3d0a7.css?body=1" for ::1 at 2016-04-22 21:47:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:47:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:47:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:47:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:47:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:47:48 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:48:56 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-67f250ad93247e5939be4a8ca857559bdceda35309ec72646866feb97a40e1bc.css?body=1" for ::1 at 2016-04-22 21:48:56 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:48:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:48:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:48:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:48:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:48:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:48:56 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:49:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:49:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:49:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:49:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:49:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:49:05 -0700 + + +Started GET "/assets/application.self-9dc61837683243608c2c118b41109c0dc48da62f4a1f6e34b796f871e0f3d0a7.css?body=1" for ::1 at 2016-04-22 21:49:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:49:05 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:49:20 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-b3990def371377a8df402a6cc34f02f2ea4e1c33fa350841261110793d1ed2e7.css?body=1" for ::1 at 2016-04-22 21:49:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:49:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:49:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:49:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:49:20 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:49:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:49:20 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:49:53 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-0fe41a80507d903e274bf48e0a76c58d35a4d88da73794bc0bbfad6ed528baa1.css?body=1" for ::1 at 2016-04-22 21:49:53 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:49:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:49:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:49:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:49:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:49:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:49:53 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:49:54 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:49:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:49:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:49:54 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:49:54 -0700 + + +Started GET "/assets/application.self-0fe41a80507d903e274bf48e0a76c58d35a4d88da73794bc0bbfad6ed528baa1.css?body=1" for ::1 at 2016-04-22 21:49:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:49:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:49:54 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:50:09 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:50:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:50:09 -0700 + + +Started GET "/assets/application.self-646f2934d46a78621c8c1643958d9d644dc05b17516f0979adae622dafe0fabe.css?body=1" for ::1 at 2016-04-22 21:50:09 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:50:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:50:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:50:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:50:09 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:50:10 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:50:10 -0700 + + +Started GET "/assets/application.self-646f2934d46a78621c8c1643958d9d644dc05b17516f0979adae622dafe0fabe.css?body=1" for ::1 at 2016-04-22 21:50:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:50:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:50:10 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:50:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:50:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:50:10 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:53:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (3.8ms) +Completed 200 OK in 48ms (Views: 41.4ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:53:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:53:40 -0700 + + +Started GET "/assets/application.self-069e7e84c944d1719c02866641d86f22f65886b53dcad9b5336eb53ca0eac0cf.css?body=1" for ::1 at 2016-04-22 21:53:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:53:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:53:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:53:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:53:40 -0700 + + +Started GET "/" for ::1 at 2016-04-22 21:58:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (31.8ms) +Completed 200 OK in 89ms (Views: 78.0ms | ActiveRecord: 2.2ms) + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 21:58:13 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) + Rendered /Users/sakne/.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 (94.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (116.8ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:58:48 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 46ms (Views: 44.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:58:48 -0700 + + +Started GET "/assets/application.self-b1d0d8eab8514ce3155b7404f430c3811a3bf600ca736c62665375f2a0380f96.css?body=1" for ::1 at 2016-04-22 21:58:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:58:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:58:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:58:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:58:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:58:48 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:59:11 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 45ms (Views: 43.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-99e584152921a94ae1082c94dc289fcfce7b1b5b7875003f18cfd82a10335d85.css?body=1" for ::1 at 2016-04-22 21:59:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:59:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:59:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:59:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:59:11 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:59:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:59:11 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:59:19 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 43ms (Views: 42.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-642bfe25ec72569d8db1187b6422cc1bd73a12b4330de21e89b99d027997092e.css?body=1" for ::1 at 2016-04-22 21:59:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:59:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:59:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:59:19 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:59:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:59:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:59:19 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:59:43 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 35ms (Views: 32.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-0547a9f02f7633b801f6b834214d7046122d55d7131114c9aa457ec8a89ef9f3.css?body=1" for ::1 at 2016-04-22 21:59:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:59:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:59:44 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:59:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:59:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:59:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:59:44 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 21:59:56 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-e5655e684bac39fb1c3ff8db4650f48e2d3012bceb83e9ed7a53c15fbea6cd8a.css?body=1" for ::1 at 2016-04-22 21:59:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 21:59:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 21:59:56 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 21:59:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 21:59:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 21:59:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 21:59:56 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:00:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 40ms (Views: 38.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-4fdfac29d3f72d13040038bb44453d0ef9ab0f0291fe06fe9137ba9718e10ee2.css?body=1" for ::1 at 2016-04-22 22:00:05 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:00:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:00:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:00:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:00:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:00:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:00:05 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:00:58 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (10.5ms) +Completed 200 OK in 73ms (Views: 58.4ms | ActiveRecord: 1.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:00:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:00:58 -0700 + + +Started GET "/assets/application.self-4fdfac29d3f72d13040038bb44453d0ef9ab0f0291fe06fe9137ba9718e10ee2.css?body=1" for ::1 at 2016-04-22 22:00:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:00:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:00:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:00:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:00:58 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:01:00 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:01:00 -0700 + + +Started GET "/assets/application.self-4fdfac29d3f72d13040038bb44453d0ef9ab0f0291fe06fe9137ba9718e10ee2.css?body=1" for ::1 at 2016-04-22 22:01:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:01:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:01:00 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:01:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:01:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:01:00 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:01:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.5ms) 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (13.0ms) +Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 1.1ms) + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 22:01:07 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) + Rendered /Users/sakne/.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/sakne/.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 (79.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.4ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:01:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 22:01:19 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/29" for ::1 at 2016-04-22 22:01:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"29"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 29]] + Rendered tasklist/show.erb within layouts/application (0.3ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/27" for ::1 at 2016-04-22 22:01:43 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"27"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 27]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 22:01:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.9ms) + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 22:01:58 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (1.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (3.6ms) +Completed 200 OK in 88ms (Views: 65.6ms | ActiveRecord: 1.2ms) + + +Started GET "/tasklist/3" for ::1 at 2016-04-22 22:02:03 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 70ms (Views: 68.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 22:02:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (22.2ms) +Completed 200 OK in 55ms (Views: 52.5ms | ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-22 22:02:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.1ms) +Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:02:39 -0700 + + +Started GET "/assets/application.self-4fdfac29d3f72d13040038bb44453d0ef9ab0f0291fe06fe9137ba9718e10ee2.css?body=1" for ::1 at 2016-04-22 22:02:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:02:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:02:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:02:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:02:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:02:39 -0700 + + +Started GET "/tasklist/3" for ::1 at 2016-04-22 22:02:49 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/3" for ::1 at 2016-04-22 22:03:51 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (3.8ms) +Completed 200 OK in 87ms (Views: 73.2ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/application.self-b24a8d3c8dde5b1f6039d076f519b64f47c86c571730361fb0db27dfc099b80d.css?body=1" for ::1 at 2016-04-22 22:03:51 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:03:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:03:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:03:51 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:03:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:03:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:03:51 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:03:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.0ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (22.2ms) +Completed 200 OK in 55ms (Views: 52.3ms | ActiveRecord: 1.6ms) + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 22:03:56 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.9ms) + Rendered /Users/sakne/.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 (92.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.7ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (117.5ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:03:58 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/3" for ::1 at 2016-04-22 22:04:04 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 53ms (Views: 50.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 22:04:07 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 22:04:27 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (3.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (31.5ms) +Completed 200 OK in 80ms (Views: 66.6ms | ActiveRecord: 3.9ms) + + +Started GET "/assets/application.self-b24a8d3c8dde5b1f6039d076f519b64f47c86c571730361fb0db27dfc099b80d.css?body=1" for ::1 at 2016-04-22 22:04:28 -0700 + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 22:04:28 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) + Rendered /Users/sakne/.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 (187.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (70.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.7ms) + Rendered /Users/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (179.2ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:04:44 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/29" for ::1 at 2016-04-22 22:04:55 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"29"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 29]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 22:05:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (12.2ms) +Completed 200 OK in 45ms (Views: 43.6ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:05:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:05:13 -0700 + + +Started GET "/assets/application.self-177c250d134e47591bdc4659ab730a0db4bf48a73f1cc703aaaa92bfe728ae5f.css?body=1" for ::1 at 2016-04-22 22:05:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:05:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:05:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:05:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:05:13 -0700 + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 22:05:13 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) + Rendered /Users/sakne/.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 (109.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (1.5ms) + Rendered /Users/sakne/.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 (1.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.9ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (4.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (115.0ms) + + +Started GET "/tasklist/29" for ::1 at 2016-04-22 22:05:17 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"29"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 29]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 66ms (Views: 64.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:05:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:05:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:05:17 -0700 + + +Started GET "/assets/application.self-177c250d134e47591bdc4659ab730a0db4bf48a73f1cc703aaaa92bfe728ae5f.css?body=1" for ::1 at 2016-04-22 22:05:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:05:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:05:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:05:17 -0700 + + +Started GET "/tasklist/29" for ::1 at 2016-04-22 22:05:18 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"29"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 29]] + Rendered tasklist/show.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:05:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:05:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:05:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:05:18 -0700 + + +Started GET "/assets/application.self-177c250d134e47591bdc4659ab730a0db4bf48a73f1cc703aaaa92bfe728ae5f.css?body=1" for ::1 at 2016-04-22 22:05:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:05:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:05:18 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:05:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (11.4ms) +Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 22:05:20 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.1ms) + + +Started GET "/" for ::1 at 2016-04-22 22:05:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:05:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:05:21 -0700 + + +Started GET "/assets/application.self-177c250d134e47591bdc4659ab730a0db4bf48a73f1cc703aaaa92bfe728ae5f.css?body=1" for ::1 at 2016-04-22 22:05:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:05:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:05:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:05:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:05:21 -0700 + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 22:05:21 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/sakne/.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/sakne/.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 (67.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.6ms) + + +Started GET "/" for ::1 at 2016-04-22 22:05:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 30ms (Views: 28.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 22:05:37 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/sakne/.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 (88.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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 (1.0ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (1.1ms) + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.8ms) + + +Started GET "/" for ::1 at 2016-04-22 22:05:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (12.3ms) +Completed 200 OK in 44ms (Views: 42.4ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 22:05:37 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.0ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:05:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 22:05:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (10.5ms) +Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist/8" for ::1 at 2016-04-22 22:05:49 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-22 22:05:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) 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", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (12.9ms) +Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 0.8ms) + + +Started GET "/tasklist/4" for ::1 at 2016-04-22 22:06:00 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 22:06:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (75.5ms) +Completed 200 OK in 189ms (Views: 181.1ms | ActiveRecord: 1.8ms) + + +Started GET "/assets/application.self-177c250d134e47591bdc4659ab730a0db4bf48a73f1cc703aaaa92bfe728ae5f.css?body=1" for ::1 at 2016-04-22 22:06:31 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:06:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:06:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:06:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:06:31 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:06:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:06:31 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:06:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:06:32 -0700 + + +Started GET "/assets/application.self-177c250d134e47591bdc4659ab730a0db4bf48a73f1cc703aaaa92bfe728ae5f.css?body=1" for ::1 at 2016-04-22 22:06:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:06:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:06:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:06:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:06:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:06:32 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:06:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:06:33 -0700 + + +Started GET "/assets/application.self-177c250d134e47591bdc4659ab730a0db4bf48a73f1cc703aaaa92bfe728ae5f.css?body=1" for ::1 at 2016-04-22 22:06:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:06:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:06:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:06:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:06:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:06:33 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:06:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 22:06:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist/6" for ::1 at 2016-04-22 22:06:43 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasklist/show.erb within layouts/application (0.3ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 22:06:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (9.2ms) +Completed 200 OK in 48ms (Views: 46.0ms | ActiveRecord: 1.2ms) + + +Started GET "/tasklist/4" for ::1 at 2016-04-22 22:07:26 -0700 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#show as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/show.erb within layouts/application (10.2ms) +Completed 200 OK in 308ms (Views: 273.1ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:07:26 -0700 + + +Started GET "/assets/application.self-177c250d134e47591bdc4659ab730a0db4bf48a73f1cc703aaaa92bfe728ae5f.css?body=1" for ::1 at 2016-04-22 22:07:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:07:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:07:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:07:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:07:26 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:07:26 -0700 + + +Started GET "/tasklist/4" for ::1 at 2016-04-22 22:07:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/show.erb within layouts/application (0.3ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:07:27 -0700 + + +Started GET "/assets/application.self-177c250d134e47591bdc4659ab730a0db4bf48a73f1cc703aaaa92bfe728ae5f.css?body=1" for ::1 at 2016-04-22 22:07:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:07:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:07:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:07:27 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:07:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:07:27 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:07:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (19.8ms) +Completed 200 OK in 50ms (Views: 47.7ms | ActiveRecord: 1.3ms) + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 22:07:29 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/sakne/.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 (118.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (69.7ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (151.7ms) + + +Started GET "/tasklist/5" for ::1 at 2016-04-22 22:08:03 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.7ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 22:08:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:08:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:08:29 -0700 + + +Started GET "/assets/application.self-177c250d134e47591bdc4659ab730a0db4bf48a73f1cc703aaaa92bfe728ae5f.css?body=1" for ::1 at 2016-04-22 22:08:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:08:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:08:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:08:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:08:29 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:08:30 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (3.7ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/3" for ::1 at 2016-04-22 22:08:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-22 22:09:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.9ms) 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (17.8ms) +Completed 200 OK in 135ms (Views: 67.9ms | ActiveRecord: 1.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:09:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:09:42 -0700 + + +Started GET "/assets/application.self-7c4a879dbe65da2df51384b2c004c95f1319e5b34846e6dee145752e9398aee4.css?body=1" for ::1 at 2016-04-22 22:09:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:09:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:09:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:09:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:09:42 -0700 + + +Started GET "/assets/images/face.png" for ::1 at 2016-04-22 22:09:42 -0700 + +ActionController::RoutingError (No route matches [GET] "/assets/images/face.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/sakne/.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/sakne/.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 (134.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (83.8ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (155.8ms) + + +Started GET "/" for ::1 at 2016-04-22 22:10:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:10:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:10:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:10:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:10:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:10:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:10:06 -0700 + + +Started GET "/assets/application.self-4fdfac29d3f72d13040038bb44453d0ef9ab0f0291fe06fe9137ba9718e10ee2.css?body=1" for ::1 at 2016-04-22 22:10:06 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:10:08 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (2.1ms) +Completed 200 OK in 51ms (Views: 48.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:12:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (2.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (18.7ms) +Completed 200 OK in 89ms (Views: 69.6ms | ActiveRecord: 2.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:12:40 -0700 + + +Started GET "/assets/application.self-4fdfac29d3f72d13040038bb44453d0ef9ab0f0291fe06fe9137ba9718e10ee2.css?body=1" for ::1 at 2016-04-22 22:12:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:12:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:12:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:12:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:12:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:12:40 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:15:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (20.5ms) +Completed 200 OK in 57ms (Views: 50.2ms | ActiveRecord: 1.3ms) + + +Started GET "/tasklist/3" for ::1 at 2016-04-22 22:15:51 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (2.1ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-22 22:15:54 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (84.9ms) +Completed 200 OK in 107ms (Views: 103.7ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasklist/4/done" for ::1 at 2016-04-22 22:16:40 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"9fhWnQsYHG6wagwSG9OdaERSjFP4lcIQkasxvrOMQQAjPTJ7M0nyKlcwihWVZotfdddQjN8IJjmTd+WklukqKA==", "id"=>"4"} + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] +  (0.5ms) begin transaction + SQL (5.8ms) UPDATE "rails_task_lists" SET "completion_status" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["completion_status", "done"], ["updated_at", "2016-04-23 05:16:40.209040"], ["id", 4]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 79ms (ActiveRecord: 9.0ms) + + +Started GET "/" for ::1 at 2016-04-22 22:16:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (4.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (51.7ms) +Completed 200 OK in 122ms (Views: 115.6ms | ActiveRecord: 4.5ms) + + +Started GET "/" for ::1 at 2016-04-22 22:18:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.6ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (36.4ms) +Completed 200 OK in 114ms (Views: 105.3ms | ActiveRecord: 2.8ms) + + +Started GET "/assets/application.self-8d336ea71e0ed2797b88bd84cd931649e701e1d4c8a94f26d0f0e63c878968a9.css?body=1" for ::1 at 2016-04-22 22:18:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:18:17 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:18:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:18:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:18:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:18:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:18:17 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:19:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (80.1ms) +Completed 500 Internal Server Error in 94ms (ActiveRecord: 0.9ms) + +NameError - uninitialized constant ActionView::CompiledTemplates::Description: + activesupport (4.2.6) lib/active_support/dependencies.rb:533:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + app/views/tasklist/index.html.erb:23:in `block in _app_views_tasklist_index_html_erb___3382848636449274677_70103377835980' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:6:in `_app_views_tasklist_index_html_erb___3382848636449274677_70103377835980' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0cad18720ffef546/variables" for ::1 at 2016-04-22 22:19:14 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:19:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (17.6ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.2ms) + +NameError - uninitialized constant ActionView::CompiledTemplates::Description: + activesupport (4.2.6) lib/active_support/dependencies.rb:533:in `load_missing_constant' + activesupport (4.2.6) lib/active_support/dependencies.rb:184:in `const_missing' + app/views/tasklist/index.html.erb:23:in `block in _app_views_tasklist_index_html_erb___3382848636449274677_70103377835980' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasklist/index.html.erb:6:in `_app_views_tasklist_index_html_erb___3382848636449274677_70103377835980' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a9551b0389a7d056/variables" for ::1 at 2016-04-22 22:19:24 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:19:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (4.0ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (33.7ms) +Completed 200 OK in 172ms (Views: 160.6ms | ActiveRecord: 4.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:19:42 -0700 + + +Started GET "/assets/application.self-8d336ea71e0ed2797b88bd84cd931649e701e1d4c8a94f26d0f0e63c878968a9.css?body=1" for ::1 at 2016-04-22 22:19:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:19:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:19:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:19:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:19:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:19:42 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:56:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (20.6ms) +Completed 200 OK in 79ms (Views: 72.1ms | ActiveRecord: 1.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:56:14 -0700 + + +Started GET "/assets/application.self-13c0c7b2056dea0d4acc3aac023f5c29c67f8c372f6fd490b52d7693dc81cd41.css?body=1" for ::1 at 2016-04-22 22:56:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:56:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:56:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:56:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:56:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:56:14 -0700 + + +Started GET "/" for ::1 at 2016-04-22 22:56:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (9.2ms) +Completed 200 OK in 31ms (Views: 30.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:56:16 -0700 + + +Started GET "/assets/application.self-13c0c7b2056dea0d4acc3aac023f5c29c67f8c372f6fd490b52d7693dc81cd41.css?body=1" for ::1 at 2016-04-22 22:56:16 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:56:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:56:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:56:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:56:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:56:16 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-22 22:56:19 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-22 22:56:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (11.1ms) +Completed 200 OK in 42ms (Views: 40.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 22:56:26 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected '<' +
                                                                  + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/new.erb:17: syntax error, unexpected '<' +
                                                                  + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/new.erb:18: syntax error, unexpected '<' + <%= f.text_field :title );@output_buffer.safe_append=' + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/new.erb:30: syntax error, unexpected keyword_ensure, expecting ')' +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/new.erb:32: syntax error, unexpected keyword_end, expecting ')': + app/views/tasklist/new.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/sakne/.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/tasklist_controller.rb:26: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 22:56:26 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +SyntaxError - syntax error, unexpected '<' +
                                                                  + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/new.erb:17: syntax error, unexpected '<' +
                                                                  + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/new.erb:18: syntax error, unexpected '<' + <%= f.text_field :title );@output_buffer.safe_append=' + ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/new.erb:30: syntax error, unexpected keyword_ensure, expecting ')' +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/tasklist/new.erb:32: syntax error, unexpected keyword_end, expecting ')': + app/views/tasklist/new.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/sakne/.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/tasklist_controller.rb:26: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4cdd368ab899497b/variables" for ::1 at 2016-04-22 22:56:26 -0700 + Person Load (0.6ms) SELECT "people".* FROM "people" + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 22:57:37 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.4ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.4ms) +Completed 200 OK in 32ms (Views: 29.3ms | ActiveRecord: 1.2ms) + + +Started GET "/assets/application.self-790934d0210f462780b971f0df6fd5b27f9c817516fdd732f4a5a462a8c87920.css?body=1" for ::1 at 2016-04-22 22:57:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:57:37 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:57:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:57:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:57:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:57:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:57:37 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-22 22:58:04 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.2ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 22:58:04 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 22:58:04 -0700 + + +Started GET "/assets/application.self-790934d0210f462780b971f0df6fd5b27f9c817516fdd732f4a5a462a8c87920.css?body=1" for ::1 at 2016-04-22 22:58:04 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 22:58:04 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 22:58:04 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 22:58:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 22:58:04 -0700 + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-22 22:58:41 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"WjtO6BkMU/J8BHqq7E7b/t++XYC7eNr7GoQyEBmjuh2M/ioOIV29tpte/K1i+83J7juBX5zlPtIYWOYKPMbRNQ==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends good and family", "person_id"=>""}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", nil], ["updated_at", "2016-04-23 05:58:41.778998"], ["id", 2]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 6ms (ActiveRecord: 1.1ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-22 22:58:41 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 33ms (Views: 32.2ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-23 18:49:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (27.1ms) +Completed 200 OK in 83ms (Views: 74.4ms | ActiveRecord: 1.7ms) + + +Started GET "/assets/application.self-bdc9e5e45f8b43694c03c8f90c8c6f6b56d38cc45de59990823b675a9768b595.css?body=1" for ::1 at 2016-04-23 18:49:12 -0700 + + +Started GET "/images/travel.jpg" for ::1 at 2016-04-23 18:49:13 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/travel.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.4ms) + Rendered /Users/sakne/.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 (97.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.9ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.0ms) + + +Started GET "/tasklist/5" for ::1 at 2016-04-23 18:51:14 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 66ms (Views: 64.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 18:51:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 18:51:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 18:51:14 -0700 + + +Started GET "/assets/application.self-98fe417e28bcd5cb38900b4f501695d53a5581e6384ef0dc30dd4cd8c183ec10.css?body=1" for ::1 at 2016-04-23 18:51:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 18:51:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 18:51:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 18:51:14 -0700 + + +Started GET "/tasklist/5" for ::1 at 2016-04-23 18:51:15 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"5"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 18:51:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 18:51:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 18:51:15 -0700 + + +Started GET "/assets/application.self-98fe417e28bcd5cb38900b4f501695d53a5581e6384ef0dc30dd4cd8c183ec10.css?body=1" for ::1 at 2016-04-23 18:51:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 18:51:15 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 18:51:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 18:51:15 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 19:23:02 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (1.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (3.1ms) +Completed 200 OK in 50ms (Views: 39.5ms | ActiveRecord: 1.1ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 19:23:02 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-98fe417e28bcd5cb38900b4f501695d53a5581e6384ef0dc30dd4cd8c183ec10.css?body=1" for ::1 at 2016-04-23 19:23:02 -0700 + + +Started GET "/" for ::1 at 2016-04-23 19:55:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (33.0ms) +Completed 200 OK in 89ms (Views: 81.1ms | ActiveRecord: 2.0ms) + + +Started GET "/assets/application.self-833daa8978078a2da1b5bb45a81b6e7924ec6e92b22d00c32d353c4d09c49f68.css?body=1" for ::1 at 2016-04-23 19:55:09 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 19:55:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 19:55:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 19:55:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 19:55:09 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 19:55:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 19:55:09 -0700 + + +Started GET "/" for ::1 at 2016-04-23 19:55:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 19:55:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 19:55:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 19:55:11 -0700 + + +Started GET "/assets/application.self-833daa8978078a2da1b5bb45a81b6e7924ec6e92b22d00c32d353c4d09c49f68.css?body=1" for ::1 at 2016-04-23 19:55:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 19:55:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 19:55:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 19:55:11 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-23 19:56:02 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 42ms (Views: 40.8ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/application.self-384a1004d121d86740b45914620f5da2063d8663e20183e738c903cdccec5a70.css?body=1" for ::1 at 2016-04-23 19:56:02 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 19:56:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 19:56:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 19:56:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 19:56:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 19:56:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 19:56:02 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-23 19:56:03 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 19:56:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 19:56:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 19:56:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 19:56:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 19:56:03 -0700 + + +Started GET "/assets/application.self-384a1004d121d86740b45914620f5da2063d8663e20183e738c903cdccec5a70.css?body=1" for ::1 at 2016-04-23 19:56:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 19:56:03 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 19:56:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 19:56:51 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 30ms (Views: 28.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-dae67f4e00eb372deb7f46e82294611c0de1b13b192dcb185583b625566d23e4.css?body=1" for ::1 at 2016-04-23 19:56:51 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 19:56:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 19:56:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 19:56:51 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 19:56:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 19:56:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 19:56:51 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-23 19:56:58 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (10.8ms) +Completed 200 OK in 41ms (Views: 38.9ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-23 19:57:02 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 39ms (Views: 37.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 19:57:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 19:57:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 19:57:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 19:57:02 -0700 + + +Started GET "/assets/application.self-dae67f4e00eb372deb7f46e82294611c0de1b13b192dcb185583b625566d23e4.css?body=1" for ::1 at 2016-04-23 19:57:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 19:57:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 19:57:02 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-23 19:57:24 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 19:57:24 -0700 + + +Started GET "/assets/application.self-384a1004d121d86740b45914620f5da2063d8663e20183e738c903cdccec5a70.css?body=1" for ::1 at 2016-04-23 19:57:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 19:57:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 19:57:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 19:57:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 19:57:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 19:57:24 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 19:57:25 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-23 19:57:40 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 35ms (Views: 34.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-5e9a6a57176cbfcefadc1f13e12b055dbc1a931a1c802202688c22fbb123fb55.css?body=1" for ::1 at 2016-04-23 19:57:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 19:57:40 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 19:57:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 19:57:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 19:57:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 19:57:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 19:57:40 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 19:57:42 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 19:58:25 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (3.1ms) +Completed 200 OK in 55ms (Views: 42.4ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 19:58:25 -0700 + + +Started GET "/assets/application.self-5e9a6a57176cbfcefadc1f13e12b055dbc1a931a1c802202688c22fbb123fb55.css?body=1" for ::1 at 2016-04-23 19:58:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 19:58:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 19:58:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 19:58:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 19:58:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 19:58:25 -0700 + + +Started GET "/tasklist.2" for ::1 at 2016-04-23 19:58:27 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 44ms (Views: 42.5ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-23 19:59:01 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (15.1ms) +Completed 200 OK in 74ms (Views: 72.4ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/application.self-85311b4122d666362d4287f973593f6d45adb60247793f7a7fd149a41cd89771.css?body=1" for ::1 at 2016-04-23 19:59:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 19:59:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 19:59:01 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 19:59:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 19:59:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 19:59:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 19:59:01 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 19:59:10 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (4.4ms) +Completed 200 OK in 53ms (Views: 42.2ms | ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-23 20:03:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (19.7ms) +Completed 200 OK in 66ms (Views: 58.4ms | ActiveRecord: 1.4ms) + + +Started GET "/assets/application.self-e01a074369fdf8408ca08c18c691664665ebd3a74083303c884bff1b57a9c857.css?body=1" for ::1 at 2016-04-23 20:03:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:03:05 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:03:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:03:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:03:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:03:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:03:05 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 20:03:08 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.4ms) +Completed 200 OK in 99ms (Views: 92.0ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-23 20:03:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:03:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:03:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:03:32 -0700 + + +Started GET "/assets/application.self-85311b4122d666362d4287f973593f6d45adb60247793f7a7fd149a41cd89771.css?body=1" for ::1 at 2016-04-23 20:03:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:03:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:03:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:03:32 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:03:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (13.8ms) +Completed 200 OK in 46ms (Views: 44.3ms | ActiveRecord: 1.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:03:33 -0700 + + +Started GET "/assets/application.self-85311b4122d666362d4287f973593f6d45adb60247793f7a7fd149a41cd89771.css?body=1" for ::1 at 2016-04-23 20:03:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:03:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:03:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:03:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:03:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:03:33 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:04:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (54.7ms) +Completed 200 OK in 108ms (Views: 98.1ms | ActiveRecord: 1.3ms) + + +Started GET "/assets/application.self-a265d24d10f0378c8fff13dababbd61ba3513d8a209e5ddc2ad3aa76df75115f.css?body=1" for ::1 at 2016-04-23 20:04:21 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:04:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:04:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:04:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:04:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:04:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:04:22 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:04:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:04:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:04:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:04:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:04:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:04:23 -0700 + + +Started GET "/assets/application.self-a265d24d10f0378c8fff13dababbd61ba3513d8a209e5ddc2ad3aa76df75115f.css?body=1" for ::1 at 2016-04-23 20:04:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:04:23 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:04:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/application.self-1fe3bda919de31c7d52c476559bc300f0a26b3bb327371ab4c3403abf240709f.css?body=1" for ::1 at 2016-04-23 20:04:59 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:04:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:04:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:04:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:04:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:04:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:04:59 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 20:05:03 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.4ms) +Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 20:05:06 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-23 20:05:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 29ms (Views: 27.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-7db07876e848d4f06e5717616ef59e229ec9b239312cbf895ee06b2525ba1121.css?body=1" for ::1 at 2016-04-23 20:05:33 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:05:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:05:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:05:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:05:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:05:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:05:33 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:05:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:05:34 -0700 + + +Started GET "/assets/application.self-7db07876e848d4f06e5717616ef59e229ec9b239312cbf895ee06b2525ba1121.css?body=1" for ::1 at 2016-04-23 20:05:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:05:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:05:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:05:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:05:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:05:34 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:05:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/application.self-be60a523d1ba4fe2f6f428b42c8c8545e5114cf187e66a6d1942c696f318939f.css?body=1" for ::1 at 2016-04-23 20:05:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:05:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:05:52 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:05:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:05:52 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:05:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:05:52 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:05:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.0ms) +Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:05:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:05:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:05:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:05:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:05:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:05:53 -0700 + + +Started GET "/assets/application.self-be60a523d1ba4fe2f6f428b42c8c8545e5114cf187e66a6d1942c696f318939f.css?body=1" for ::1 at 2016-04-23 20:05:53 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:07:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (24.9ms) +Completed 200 OK in 80ms (Views: 74.0ms | ActiveRecord: 1.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:07:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:07:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:07:40 -0700 + + +Started GET "/assets/application.self-083c2b06ed056d9bf54a1d6f55c2b2750cd9b92b2522418e7be8b85b5377857f.css?body=1" for ::1 at 2016-04-23 20:07:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:07:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:07:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:07:40 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:07:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (16.0ms) +Completed 200 OK in 92ms (Views: 89.9ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/application.self-083c2b06ed056d9bf54a1d6f55c2b2750cd9b92b2522418e7be8b85b5377857f.css?body=1" for ::1 at 2016-04-23 20:07:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:07:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:07:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:07:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:07:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:07:42 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:07:42 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:08:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 36ms (Views: 34.9ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-23 20:08:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-23 20:08:46 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (21.0ms) +Completed 200 OK in 70ms (Views: 61.8ms | ActiveRecord: 1.1ms) + + +Started GET "/assets/application.self-a8d8bb347391a41c2c06b91bca7dafdf74c01f051189132ff974472cab100dad.css?body=1" for ::1 at 2016-04-23 20:08:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:08:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:08:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:08:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:08:46 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:08:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:08:46 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:08:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:08:48 -0700 + + +Started GET "/assets/application.self-a8d8bb347391a41c2c06b91bca7dafdf74c01f051189132ff974472cab100dad.css?body=1" for ::1 at 2016-04-23 20:08:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:08:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:08:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:08:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:08:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:08:48 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:08:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:08:49 -0700 + + +Started GET "/assets/application.self-a8d8bb347391a41c2c06b91bca7dafdf74c01f051189132ff974472cab100dad.css?body=1" for ::1 at 2016-04-23 20:08:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:08:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:08:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:08:49 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:08:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:08:49 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:11:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (11.9ms) +Completed 200 OK in 48ms (Views: 44.6ms | ActiveRecord: 1.4ms) + + +Started GET "/assets/application.self-313e43ea2fcf55bb64e13115552fbabb04bcb9df9af6ec0552f69f8299eaf7d4.css?body=1" for ::1 at 2016-04-23 20:11:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:11:15 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:11:15 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:11:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:11:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:11:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:11:15 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:11:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 29ms (Views: 27.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-3b8ea98fa03afe38c8c5426a44fee72d1b704ccbd40ba8a15eccdba038c7ed05.css?body=1" for ::1 at 2016-04-23 20:11:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:11:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:11:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:11:26 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:11:26 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:11:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:11:26 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:11:27 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (26.9ms) +Completed 200 OK in 101ms (Views: 93.2ms | ActiveRecord: 1.9ms) + + +Started GET "/assets/application.self-3b8ea98fa03afe38c8c5426a44fee72d1b704ccbd40ba8a15eccdba038c7ed05.css?body=1" for ::1 at 2016-04-23 20:11:28 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:11:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:11:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:11:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:11:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:11:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:11:28 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:15:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (11.1ms) +Completed 200 OK in 47ms (Views: 45.6ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/application.self-3f1fcb2ee0c9d0edf633f2f2ed3244970ca87a899cf376ec2470ba04f9834b51.css?body=1" for ::1 at 2016-04-23 20:15:31 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:15:31 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:15:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:15:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:15:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:15:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:15:31 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:15:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (65.4ms) +Completed 200 OK in 80ms (Views: 78.0ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:15:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:15:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:15:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:15:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:15:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:15:33 -0700 + + +Started GET "/assets/application.self-3f1fcb2ee0c9d0edf633f2f2ed3244970ca87a899cf376ec2470ba04f9834b51.css?body=1" for ::1 at 2016-04-23 20:15:33 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:16:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-33df8419fd427a5f040fd4bd8a50e7dcb9ff98d9176863e408b8a516375171df.css?body=1" for ::1 at 2016-04-23 20:16:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:16:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:16:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:16:00 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:16:00 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:16:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:16:00 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:16:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:16:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:16:01 -0700 + + +Started GET "/assets/application.self-33df8419fd427a5f040fd4bd8a50e7dcb9ff98d9176863e408b8a516375171df.css?body=1" for ::1 at 2016-04-23 20:16:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:16:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:16:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:16:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:16:01 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:16:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.7ms) +Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:16:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:16:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:16:36 -0700 + + +Started GET "/assets/application.self-33df8419fd427a5f040fd4bd8a50e7dcb9ff98d9176863e408b8a516375171df.css?body=1" for ::1 at 2016-04-23 20:16:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:16:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:16:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:16:36 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:16:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:16:39 -0700 + + +Started GET "/assets/application.self-33df8419fd427a5f040fd4bd8a50e7dcb9ff98d9176863e408b8a516375171df.css?body=1" for ::1 at 2016-04-23 20:16:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:16:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:16:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:16:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:16:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:16:39 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:18:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (10.9ms) +Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-23 20:18:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:18:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:18:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:18:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:18:42 -0700 + + +Started GET "/assets/application.self-33df8419fd427a5f040fd4bd8a50e7dcb9ff98d9176863e408b8a516375171df.css?body=1" for ::1 at 2016-04-23 20:18:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:18:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:18:42 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:18:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 1.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:18:50 -0700 + + +Started GET "/assets/application.self-3f1fcb2ee0c9d0edf633f2f2ed3244970ca87a899cf376ec2470ba04f9834b51.css?body=1" for ::1 at 2016-04-23 20:18:50 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:18:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:18:50 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:18:50 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:18:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:18:50 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:18:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (10.5ms) +Completed 200 OK in 31ms (Views: 29.3ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:18:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:18:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:18:52 -0700 + + +Started GET "/assets/application.self-3f1fcb2ee0c9d0edf633f2f2ed3244970ca87a899cf376ec2470ba04f9834b51.css?body=1" for ::1 at 2016-04-23 20:18:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:18:52 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:18:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:18:52 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:19:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/application.self-b90c6aa19e99d4c06c37132353e2f39700693c88aee1a3950242cbd3ab862f53.css?body=1" for ::1 at 2016-04-23 20:19:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:19:19 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:19:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:19:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:19:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:19:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:19:19 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:19:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:19:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:19:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:19:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:19:21 -0700 + + +Started GET "/assets/application.self-b90c6aa19e99d4c06c37132353e2f39700693c88aee1a3950242cbd3ab862f53.css?body=1" for ::1 at 2016-04-23 20:19:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:19:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:19:21 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:19:27 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-23 20:19:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.0ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-23 20:20:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-23 20:22:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (9.6ms) +Completed 200 OK in 30ms (Views: 28.6ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:22:22 -0700 + + +Started GET "/assets/application.self-b90c6aa19e99d4c06c37132353e2f39700693c88aee1a3950242cbd3ab862f53.css?body=1" for ::1 at 2016-04-23 20:22:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:22:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:22:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:22:22 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:22:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:22:22 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:22:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:22:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:22:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:22:23 -0700 + + +Started GET "/assets/application.self-b90c6aa19e99d4c06c37132353e2f39700693c88aee1a3950242cbd3ab862f53.css?body=1" for ::1 at 2016-04-23 20:22:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:22:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:22:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:22:23 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:23:02 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.8ms) +Completed 200 OK in 29ms (Views: 27.5ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:23:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:23:02 -0700 + + +Started GET "/assets/application.self-b90c6aa19e99d4c06c37132353e2f39700693c88aee1a3950242cbd3ab862f53.css?body=1" for ::1 at 2016-04-23 20:23:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:23:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:23:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:23:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:23:02 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:23:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:23:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:23:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:23:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:23:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:23:03 -0700 + + +Started GET "/assets/application.self-b90c6aa19e99d4c06c37132353e2f39700693c88aee1a3950242cbd3ab862f53.css?body=1" for ::1 at 2016-04-23 20:23:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:23:03 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:23:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (11.0ms) +Completed 200 OK in 29ms (Views: 27.3ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:23:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:23:24 -0700 + + +Started GET "/assets/application.self-b90c6aa19e99d4c06c37132353e2f39700693c88aee1a3950242cbd3ab862f53.css?body=1" for ::1 at 2016-04-23 20:23:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:23:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:23:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:23:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:23:24 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:23:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:23:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:23:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:23:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:23:25 -0700 + + +Started GET "/assets/application.self-b90c6aa19e99d4c06c37132353e2f39700693c88aee1a3950242cbd3ab862f53.css?body=1" for ::1 at 2016-04-23 20:23:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:23:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:23:25 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:23:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.7ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:23:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:23:29 -0700 + + +Started GET "/assets/application.self-b90c6aa19e99d4c06c37132353e2f39700693c88aee1a3950242cbd3ab862f53.css?body=1" for ::1 at 2016-04-23 20:23:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:23:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:23:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:23:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:23:29 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:24:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-7731d11b56d845fc0aa170883344a263ddd514b8354de43b462ebbde11bc7112.css?body=1" for ::1 at 2016-04-23 20:24:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:24:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:24:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:24:18 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:24:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:24:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:24:18 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:24:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:24:37 -0700 + + +Started GET "/assets/application.self-7731d11b56d845fc0aa170883344a263ddd514b8354de43b462ebbde11bc7112.css?body=1" for ::1 at 2016-04-23 20:24:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:24:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:24:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:24:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:24:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:24:37 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:27:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 40ms (Views: 38.2ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/application.self-3b8f6945e4127e2fe5eeb17bfb0f49d90537228be5e48ade3b5728276a4c8cea.css?body=1" for ::1 at 2016-04-23 20:27:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:27:11 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:27:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:27:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:27:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:27:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:27:11 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:27:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:27:13 -0700 + + +Started GET "/assets/application.self-3b8f6945e4127e2fe5eeb17bfb0f49d90537228be5e48ade3b5728276a4c8cea.css?body=1" for ::1 at 2016-04-23 20:27:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:27:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:27:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:27:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:27:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:27:13 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:27:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (16.6ms) +Completed 200 OK in 47ms (Views: 41.2ms | ActiveRecord: 1.2ms) + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:27:23 -0700 + + +Started GET "/assets/application.self-3b8f6945e4127e2fe5eeb17bfb0f49d90537228be5e48ade3b5728276a4c8cea.css?body=1" for ::1 at 2016-04-23 20:27:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:27:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:27:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:27:23 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:27:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:27:23 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:27:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:27:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:27:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:27:25 -0700 + + +Started GET "/assets/application.self-3b8f6945e4127e2fe5eeb17bfb0f49d90537228be5e48ade3b5728276a4c8cea.css?body=1" for ::1 at 2016-04-23 20:27:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:27:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:27:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:27:25 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:27:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:27:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:27:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:27:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:27:39 -0700 + + +Started GET "/assets/application.self-3b8f6945e4127e2fe5eeb17bfb0f49d90537228be5e48ade3b5728276a4c8cea.css?body=1" for ::1 at 2016-04-23 20:27:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:27:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:27:40 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:28:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (13.1ms) +Completed 200 OK in 47ms (Views: 40.7ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:28:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:28:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:28:19 -0700 + + +Started GET "/assets/application.self-3b8f6945e4127e2fe5eeb17bfb0f49d90537228be5e48ade3b5728276a4c8cea.css?body=1" for ::1 at 2016-04-23 20:28:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:28:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:28:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:28:19 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:28:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:28:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:28:20 -0700 + + +Started GET "/assets/application.self-3b8f6945e4127e2fe5eeb17bfb0f49d90537228be5e48ade3b5728276a4c8cea.css?body=1" for ::1 at 2016-04-23 20:28:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:28:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:28:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:28:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:28:20 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 20:28:46 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-23 20:29:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-23 20:29:18 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-23 20:32:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:32:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:32:56 -0700 + + +Started GET "/assets/application.self-7731d11b56d845fc0aa170883344a263ddd514b8354de43b462ebbde11bc7112.css?body=1" for ::1 at 2016-04-23 20:32:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:32:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:32:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:32:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:32:56 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:32:57 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:32:57 -0700 + + +Started GET "/assets/application.self-7731d11b56d845fc0aa170883344a263ddd514b8354de43b462ebbde11bc7112.css?body=1" for ::1 at 2016-04-23 20:32:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:32:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:32:57 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:32:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:32:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:32:57 -0700 + + +Started GET "/" for ::1 at 2016-04-23 20:33:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (15.4ms) +Completed 200 OK in 72ms (Views: 65.9ms | ActiveRecord: 1.3ms) + + +Started GET "/assets/application.self-d870432e26b3e664658ac66e752b33a6671be2c4b8916f17c2b2276d3c2f674b.css?body=1" for ::1 at 2016-04-23 20:33:47 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:33:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:33:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:33:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:33:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:33:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:33:47 -0700 + + +Started GET "/tasklist/3" for ::1 at 2016-04-23 20:33:52 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-23 20:36:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (22.1ms) +Completed 200 OK in 79ms (Views: 71.3ms | ActiveRecord: 1.6ms) + + +Started GET "/assets/application.self-e2346476081291c05a51842950c636585ae19b625a1376886b87b97a88f92064.css?body=1" for ::1 at 2016-04-23 20:36:06 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 20:36:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 20:36:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 20:36:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 20:36:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 20:36:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 20:36:06 -0700 + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-23 20:39:15 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"V8rWwFC3xiGR6g6AI4udsqkY4auyw4dkZ0lz37gaqISBD7ImaOYoZXawiIetPouFmJ09dJVeY01llafFnX/DrA==", "id"=>"2"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.8ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 24ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2016-04-23 20:39:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 34ms (Views: 32.9ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-23 20:39:17 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (11.7ms) +Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-23 21:33:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (25.9ms) +Completed 200 OK in 69ms (Views: 61.2ms | ActiveRecord: 1.5ms) + + +Started GET "/" for ::1 at 2016-04-23 21:33:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-e2346476081291c05a51842950c636585ae19b625a1376886b87b97a88f92064.css?body=1" for ::1 at 2016-04-23 21:33:08 -0700 + + +Started GET "/" for ::1 at 2016-04-23 21:33:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 29ms (Views: 27.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 21:33:12 -0700 + + +Started GET "/assets/application.self-e2346476081291c05a51842950c636585ae19b625a1376886b87b97a88f92064.css?body=1" for ::1 at 2016-04-23 21:33:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 21:33:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 21:33:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 21:33:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 21:33:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 21:33:12 -0700 + + +Started GET "/" for ::1 at 2016-04-23 21:33:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-23 21:33:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-23 21:33:13 -0700 + + +Started GET "/assets/application.self-e2346476081291c05a51842950c636585ae19b625a1376886b87b97a88f92064.css?body=1" for ::1 at 2016-04-23 21:33:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-23 21:33:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-23 21:33:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-23 21:33:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-23 21:33:13 -0700 + + +Started GET "/" for ::1 at 2016-04-24 01:15:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (2.0ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (21.4ms) +Completed 200 OK in 67ms (Views: 58.8ms | ActiveRecord: 2.3ms) + + +Started GET "/" for ::1 at 2016-04-24 15:29:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (24.5ms) +Completed 200 OK in 154ms (Views: 145.7ms | ActiveRecord: 1.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:29:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:29:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:29:34 -0700 + + +Started GET "/assets/application.self-e2346476081291c05a51842950c636585ae19b625a1376886b87b97a88f92064.css?body=1" for ::1 at 2016-04-24 15:29:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:29:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:29:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:29:34 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:29:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:29:35 -0700 + + +Started GET "/assets/application.self-e2346476081291c05a51842950c636585ae19b625a1376886b87b97a88f92064.css?body=1" for ::1 at 2016-04-24 15:29:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:29:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:29:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:29:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:29:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:29:35 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:31:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (27.1ms) +Completed 200 OK in 147ms (Views: 139.6ms | ActiveRecord: 2.2ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:31:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:31:11 -0700 + + +Started GET "/assets/application.self-cb4e163287edcc4e72e36f7b7d0e485aac93c0904b7a182bbceafdf92691ee51.css?body=1" for ::1 at 2016-04-24 15:31:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:31:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:31:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:31:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:31:12 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:31:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:31:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:31:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:31:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:31:13 -0700 + + +Started GET "/assets/application.self-cb4e163287edcc4e72e36f7b7d0e485aac93c0904b7a182bbceafdf92691ee51.css?body=1" for ::1 at 2016-04-24 15:31:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:31:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:31:13 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:31:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 34ms (Views: 33.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:31:22 -0700 + + +Started GET "/assets/application.self-9d88a5f844217fc88ae7980e21be447fead422111bea885b0ada7c141fb0b39d.css?body=1" for ::1 at 2016-04-24 15:31:22 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:31:22 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:31:22 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:31:22 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:31:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:31:22 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:31:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:31:23 -0700 + + +Started GET "/assets/application.self-9d88a5f844217fc88ae7980e21be447fead422111bea885b0ada7c141fb0b39d.css?body=1" for ::1 at 2016-04-24 15:31:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:31:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:31:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:31:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:31:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:31:23 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:31:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:31:24 -0700 + + +Started GET "/assets/application.self-9d88a5f844217fc88ae7980e21be447fead422111bea885b0ada7c141fb0b39d.css?body=1" for ::1 at 2016-04-24 15:31:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:31:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:31:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:31:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:31:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:31:24 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:31:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/application.self-4aa5be54f9c130b4c494c952a42a584c698f50df71c520c45c4a08a90b0271c7.css?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:31:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/application.self-4aa5be54f9c130b4c494c952a42a584c698f50df71c520c45c4a08a90b0271c7.css?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:31:47 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:31:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:31:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:31:48 -0700 + + +Started GET "/assets/application.self-4aa5be54f9c130b4c494c952a42a584c698f50df71c520c45c4a08a90b0271c7.css?body=1" for ::1 at 2016-04-24 15:31:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:31:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:31:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:31:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:31:48 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:33:54 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.9ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (25.2ms) +Completed 200 OK in 94ms (Views: 86.1ms | ActiveRecord: 2.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:33:54 -0700 + + +Started GET "/assets/application.self-28e233b73ce8541e6e4f65010b8076e091590fb0a7192f059f36cd7cf75ace95.css?body=1" for ::1 at 2016-04-24 15:33:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:33:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:33:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:33:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:33:54 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:33:54 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:33:54 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:39:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (27.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (33.8ms) +Completed 200 OK in 56ms (Views: 26.9ms | ActiveRecord: 27.8ms) + + +Started GET "/assets/application.self-28e233b73ce8541e6e4f65010b8076e091590fb0a7192f059f36cd7cf75ace95.css?body=1" for ::1 at 2016-04-24 15:39:19 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:39:19 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:42:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (21.4ms) +Completed 200 OK in 78ms (Views: 70.1ms | ActiveRecord: 1.6ms) + + +Started GET "/assets/application.self-784f0ba8878042e092ca75b37898424832d1d0ea9b6e54381d40fd8f2ce84e72.css?body=1" for ::1 at 2016-04-24 15:42:47 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:42:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:42:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:42:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:42:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:42:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:42:47 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:42:47 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:42:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:42:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:42:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:42:48 -0700 + + +Started GET "/assets/application.self-784f0ba8878042e092ca75b37898424832d1d0ea9b6e54381d40fd8f2ce84e72.css?body=1" for ::1 at 2016-04-24 15:42:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:42:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:42:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:42:48 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:42:57 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:42:57 -0700 + + +Started GET "/assets/application.self-784f0ba8878042e092ca75b37898424832d1d0ea9b6e54381d40fd8f2ce84e72.css?body=1" for ::1 at 2016-04-24 15:42:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:42:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:42:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:42:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:42:57 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:42:57 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:42:57 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:42:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 28ms (Views: 26.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:42:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:42:59 -0700 + + +Started GET "/assets/application.self-784f0ba8878042e092ca75b37898424832d1d0ea9b6e54381d40fd8f2ce84e72.css?body=1" for ::1 at 2016-04-24 15:42:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:42:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:42:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:42:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:42:59 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:43:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.0ms) +Completed 200 OK in 32ms (Views: 31.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/application.self-08c841eb6efe935a5c5cb843baecd621d8594e4f6c4d042544acf110a4642393.css?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:43:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/application.self-08c841eb6efe935a5c5cb843baecd621d8594e4f6c4d042544acf110a4642393.css?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:43:24 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:43:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:43:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:43:25 -0700 + + +Started GET "/assets/application.self-08c841eb6efe935a5c5cb843baecd621d8594e4f6c4d042544acf110a4642393.css?body=1" for ::1 at 2016-04-24 15:43:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:43:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:43:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:43:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:43:25 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:43:25 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:45:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (22.0ms) +Completed 200 OK in 77ms (Views: 69.8ms | ActiveRecord: 1.5ms) + + +Started GET "/assets/application.self-178f39bd0b0d65347e4115fdb54d8e0998cdc6721a7658560c3bfc2bb1a333b7.css?body=1" for ::1 at 2016-04-24 15:45:09 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:45:09 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:45:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:45:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:45:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:45:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:45:09 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:45:09 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:54:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (10.9ms) +Completed 200 OK in 38ms (Views: 36.7ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-f57ca52c7fc21fbdf6ac3d65e003d9266b78d886b092c7675d30e6bdb70ab552.css?body=1" for ::1 at 2016-04-24 15:54:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:54:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:54:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:54:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:54:13 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:54:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:54:13 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:54:13 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:54:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:54:14 -0700 + + +Started GET "/assets/application.self-f57ca52c7fc21fbdf6ac3d65e003d9266b78d886b092c7675d30e6bdb70ab552.css?body=1" for ::1 at 2016-04-24 15:54:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:54:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:54:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:54:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:54:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:54:14 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:54:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 31ms (Views: 29.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-7b2fe908565479ff71468fb752eb4c9ef787d16dd318bdcb54508aae63f721ff.css?body=1" for ::1 at 2016-04-24 15:54:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:54:38 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:54:38 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:54:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:54:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:54:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:54:38 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:54:38 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:54:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-76c14f908b2312de3c028cace642539a2f718da34b94e063cc984a89199d2ae6.css?body=1" for ::1 at 2016-04-24 15:54:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:54:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:54:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:54:48 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:54:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:54:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:54:48 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:54:48 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:54:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-7a037fbb484e8dcbad3eadc58a63915a0c452a3b2aa85e22c8a8834b9a31ba6f.css?body=1" for ::1 at 2016-04-24 15:54:59 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:54:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:55:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:55:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:55:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:55:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:55:00 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:55:00 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:55:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 34ms (Views: 33.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-de55aba10ec101bfce8ca91607cf09a57c21f9dd8e636258400c5da35c503f07.css?body=1" for ::1 at 2016-04-24 15:55:11 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:55:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:55:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:55:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:55:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:55:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:55:11 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 15:55:11 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:55:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:55:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:55:43 -0700 + + +Started GET "/assets/application.self-7a037fbb484e8dcbad3eadc58a63915a0c452a3b2aa85e22c8a8834b9a31ba6f.css?body=1" for ::1 at 2016-04-24 15:55:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:55:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:55:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:55:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:55:43 -0700 + + +Started GET "/" for ::1 at 2016-04-24 15:56:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-de55aba10ec101bfce8ca91607cf09a57c21f9dd8e636258400c5da35c503f07.css?body=1" for ::1 at 2016-04-24 15:56:00 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 15:56:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 15:56:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 15:56:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 15:56:00 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 15:56:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 15:56:00 -0700 + + +Started PATCH "/tasklist/3/done" for ::1 at 2016-04-24 15:58:00 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"PEaNPCbP7OiNkUfi+q6OYRz3eANwx+PnSUE3Sp8lW5/qg+naHp4CrGrLweV0G5hWLXKk3FdaB85LneNQukAwtw==", "id"=>"3"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] +  (0.2ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-24 15:58:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/4/edit" for ::1 at 2016-04-24 15:58:03 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.4ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-24 15:58:09 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-24 16:01:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 16:01:30 -0700 + + +Started GET "/assets/application.self-de55aba10ec101bfce8ca91607cf09a57c21f9dd8e636258400c5da35c503f07.css?body=1" for ::1 at 2016-04-24 16:01:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 16:01:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 16:01:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 16:01:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 16:01:30 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 16:01:30 -0700 + + +Started GET "/tasklist/3" for ::1 at 2016-04-24 16:01:39 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-24 16:02:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 16:02:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 16:02:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 16:02:11 -0700 + + +Started GET "/assets/application.self-de55aba10ec101bfce8ca91607cf09a57c21f9dd8e636258400c5da35c503f07.css?body=1" for ::1 at 2016-04-24 16:02:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 16:02:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 16:02:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 16:02:11 -0700 + + +Started GET "/" for ::1 at 2016-04-24 16:04:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.6ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 35ms (Views: 34.2ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/application.self-4ebff0a8013e0bd4a33f2681f2b1c5544c98c06184a6a9ec1835a1f2314806b7.css?body=1" for ::1 at 2016-04-24 16:04:23 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 16:04:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 16:04:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 16:04:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 16:04:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 16:04:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 16:04:23 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 16:04:23 -0700 + + +Started GET "/" for ::1 at 2016-04-24 16:05:20 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 16:05:20 -0700 + + +Started GET "/assets/application.self-4ebff0a8013e0bd4a33f2681f2b1c5544c98c06184a6a9ec1835a1f2314806b7.css?body=1" for ::1 at 2016-04-24 16:05:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 16:05:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 16:05:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 16:05:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 16:05:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 16:05:21 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-24 16:08:28 -0700 +Processing by TasklistController#new as HTML + Person Load (0.4ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.9ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.4ms) + + +Started POST "/tasklist" for ::1 at 2016-04-24 16:08:44 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"akLlVX8YsWozNc8NZDmMmgMMfCkEKwqU9jqEMsT/MUm8h4GzR0lfLtRvSQrqjJqtMomg9iO27r305lAo4ZpaYQ==", "rails_task_list"=>{"title"=>"Fun Times", "description"=>"more fun times", "person_id"=>"1"}, "commit"=>"Create Rails task list"} +Unpermitted parameter: person_id +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (1.2ms) INSERT INTO "rails_task_lists" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Fun Times"], ["description", "more fun times"], ["created_at", "2016-04-24 23:08:44.362958"], ["updated_at", "2016-04-24 23:08:44.362958"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-24 16:08:44 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/37/edit" for ::1 at 2016-04-24 16:08:51 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"37"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 37]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasklist/37" for ::1 at 2016-04-24 16:08:59 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"mGtUXfNF5/BcGLgXu7AfPP+RSbMkrftvZqbh9BM1pxZOrjC7yxQJtLtCPhA1BQkLzhSVbAMwH0ZkejXuNlDMPg==", "rails_task_list"=>{"title"=>"Fun Times", "description"=>"more fun times", "person_id"=>"2"}, "commit"=>"Update Rails task list", "id"=>"37"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 37]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 2], ["updated_at", "2016-04-24 23:08:59.393542"], ["id", 37]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasklist.37 +Completed 302 Found in 8ms (ActiveRecord: 2.6ms) + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 16:08:59 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (10.2ms) +Completed 200 OK in 35ms (Views: 34.1ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 16:11:18 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 42ms (Views: 41.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-fb2f696de9324f47f8cdec0244c54372534c6ead969736bf6bf6a1c7027c04b6.css?body=1" for ::1 at 2016-04-24 16:11:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 16:11:18 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 16:11:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 16:11:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 16:11:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 16:11:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 16:11:18 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 16:11:18 -0700 + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 16:12:44 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 36ms (Views: 35.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-783eb0c0ac59414509ef1dd7e8cbe12f773d2b16717a74acabb36facf07fb102.css?body=1" for ::1 at 2016-04-24 16:12:44 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 16:12:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 16:12:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 16:12:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 16:12:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 16:12:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 16:12:44 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 16:12:44 -0700 + + +Started GET "/" for ::1 at 2016-04-24 16:48:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 40ms (Views: 39.1ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-24 16:48:11 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:18:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 108ms (Views: 106.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:18:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:18:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:18:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:18:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:18:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:18:34 -0700 + + +Started GET "/assets/application.self-9edf905ea2a35c7624741ad81df50b42d7b09f5432299c5e5fe5bf42591b5ced.css?body=1" for ::1 at 2016-04-24 17:18:34 -0700 + + +Started GET "/assets/notes.jpg" for ::1 at 2016-04-24 17:18:34 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:19:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.8ms) +Completed 200 OK in 55ms (Views: 53.6ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:19:24 -0700 + + +Started GET "/assets/application.self-d7e63e963185e2f4ced65f5f53b11911d834e433f9575ede89bbada712562e3a.css?body=1" for ::1 at 2016-04-24 17:19:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:19:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:19:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:19:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:19:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:19:24 -0700 + + +Started GET "/assets/notes.jpg" for ::1 at 2016-04-24 17:19:24 -0700 + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 17:20:15 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.2ms) +Completed 200 OK in 36ms (Views: 35.3ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/application.self-d7e63e963185e2f4ced65f5f53b11911d834e433f9575ede89bbada712562e3a.css?body=1" for ::1 at 2016-04-24 17:20:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:20:15 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:20:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:20:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:20:15 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:20:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:20:15 -0700 + + +Started GET "/assets/notes.jpg" for ::1 at 2016-04-24 17:20:15 -0700 + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 17:20:58 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 51ms (Views: 50.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-8f03571f82a60e43408aea9063e3172af14f95e678aff5a3f2cdb1f79d8b3b92.css?body=1" for ::1 at 2016-04-24 17:20:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:20:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:20:58 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:20:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:20:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:20:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:20:58 -0700 + + +Started GET "/assets/notes.jpg" for ::1 at 2016-04-24 17:20:58 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:21:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:21:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:21:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:21:38 -0700 + + +Started GET "/assets/application.self-8f03571f82a60e43408aea9063e3172af14f95e678aff5a3f2cdb1f79d8b3b92.css?body=1" for ::1 at 2016-04-24 17:21:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:21:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:21:38 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:21:38 -0700 + + +Started GET "/assets/notes.jpg" for ::1 at 2016-04-24 17:21:38 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:22:16 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 53ms (Views: 52.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:22:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:22:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:22:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:22:16 -0700 + + +Started GET "/assets/application.self-8f03571f82a60e43408aea9063e3172af14f95e678aff5a3f2cdb1f79d8b3b92.css?body=1" for ::1 at 2016-04-24 17:22:16 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:22:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:22:16 -0700 + + +Started GET "/assets/notes.jpg" for ::1 at 2016-04-24 17:22:16 -0700 + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 17:25:43 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:25:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:25:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:25:43 -0700 + + +Started GET "/assets/application.self-8f03571f82a60e43408aea9063e3172af14f95e678aff5a3f2cdb1f79d8b3b92.css?body=1" for ::1 at 2016-04-24 17:25:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:25:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:25:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:25:43 -0700 + + +Started GET "/assets/notes.jpg" for ::1 at 2016-04-24 17:25:43 -0700 + + +Started GET "/tasklist/8" for ::1 at 2016-04-24 17:25:52 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 17:32:36 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 37ms (Views: 36.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-95655bbfbc5ddb1e4e9f19eb2acc9718aeb01051caa0e920b54fc1941bdddab1.css?body=1" for ::1 at 2016-04-24 17:32:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:32:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:32:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:32:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:32:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:32:36 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:32:36 -0700 + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 17:33:41 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 42ms (Views: 40.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-0ee5ed0d2af4d5e27935a6c6f463949ef0a0da4fe7fc1a7b106946c3e6748ff7.css?body=1" for ::1 at 2016-04-24 17:33:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:33:41 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:33:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:33:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:33:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:33:41 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:33:41 -0700 + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 17:35:12 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:35:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:35:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:35:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:35:12 -0700 + + +Started GET "/assets/application.self-0ee5ed0d2af4d5e27935a6c6f463949ef0a0da4fe7fc1a7b106946c3e6748ff7.css?body=1" for ::1 at 2016-04-24 17:35:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:35:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:35:12 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:35:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:35:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:35:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:35:31 -0700 + + +Started GET "/assets/application.self-0ee5ed0d2af4d5e27935a6c6f463949ef0a0da4fe7fc1a7b106946c3e6748ff7.css?body=1" for ::1 at 2016-04-24 17:35:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:35:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:35:31 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:35:31 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-24 17:42:21 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.3ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-24 17:43:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:43:39 -0700 + + +Started GET "/assets/application.self-0ee5ed0d2af4d5e27935a6c6f463949ef0a0da4fe7fc1a7b106946c3e6748ff7.css?body=1" for ::1 at 2016-04-24 17:43:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:43:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:43:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:43:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:43:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:43:39 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:44:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:44:11 -0700 + + +Started GET "/assets/application.self-0ee5ed0d2af4d5e27935a6c6f463949ef0a0da4fe7fc1a7b106946c3e6748ff7.css?body=1" for ::1 at 2016-04-24 17:44:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:44:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:44:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:44:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:44:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:44:11 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:44:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.7ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:44:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:44:36 -0700 + + +Started GET "/assets/application.self-0ee5ed0d2af4d5e27935a6c6f463949ef0a0da4fe7fc1a7b106946c3e6748ff7.css?body=1" for ::1 at 2016-04-24 17:44:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:44:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:44:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:44:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:44:36 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:44:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:44:37 -0700 + + +Started GET "/assets/application.self-0ee5ed0d2af4d5e27935a6c6f463949ef0a0da4fe7fc1a7b106946c3e6748ff7.css?body=1" for ::1 at 2016-04-24 17:44:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:44:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:44:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:44:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:44:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:44:37 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:46:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.2ms) +Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:46:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:46:59 -0700 + + +Started GET "/assets/application.self-0ee5ed0d2af4d5e27935a6c6f463949ef0a0da4fe7fc1a7b106946c3e6748ff7.css?body=1" for ::1 at 2016-04-24 17:46:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:46:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:46:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:46:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:46:59 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:47:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.5ms) +Completed 200 OK in 44ms (Views: 42.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-42edc5cf5c5079a824a6e2fa2b6f0a6b6734639653cf3908184b4a43f899488a.css?body=1" for ::1 at 2016-04-24 17:47:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:47:29 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:47:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:47:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:47:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:47:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:47:29 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:47:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.7ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:47:40 -0700 + + +Started GET "/assets/application.self-42edc5cf5c5079a824a6e2fa2b6f0a6b6734639653cf3908184b4a43f899488a.css?body=1" for ::1 at 2016-04-24 17:47:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:47:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:47:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:47:41 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:47:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:47:41 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:48:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 47ms (Views: 45.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:48:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:48:34 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:48:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:48:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:48:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:48:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:48:34 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:48:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:48:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:48:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:48:35 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:48:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:48:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:48:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:48:35 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:48:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:48:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:48:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:48:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:48:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:48:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:48:36 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:48:36 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:49:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:49:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:49:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:49:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:49:18 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:49:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:49:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:49:18 -0700 + + +Started GET "/tasklist/3" for ::1 at 2016-04-24 17:49:20 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-24 17:49:28 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.5ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-24 17:50:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:50:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:50:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:50:35 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:50:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:50:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:50:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:50:35 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:50:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.5ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:50:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:50:52 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:50:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:50:52 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:50:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:50:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:50:52 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:51:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:51:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:51:12 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:51:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:51:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:51:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:51:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:51:12 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:51:29 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:51:29 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:51:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:51:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:51:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:51:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:51:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:51:29 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:51:47 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:51:47 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:51:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:51:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:51:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:51:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:51:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:51:47 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:51:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:51:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:51:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:51:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:51:53 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:51:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:51:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:51:53 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:52:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:52:23 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:52:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:52:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:52:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:52:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:52:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:52:23 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:53:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:53:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:53:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:53:32 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:53:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:53:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:53:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:53:32 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:53:43 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (15.0ms) +Completed 200 OK in 29ms (Views: 27.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:53:43 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:53:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:53:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:53:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:53:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:53:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:53:43 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:54:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:54:20 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:54:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:54:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:54:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:54:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:54:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:54:20 -0700 + + +Started GET "/" for ::1 at 2016-04-24 17:57:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 32ms (Views: 30.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:57:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:57:24 -0700 + + +Started GET "/assets/application.self-7a0c09f8443058bc291a9f3062e264ec505ad397fafcfbcdae68acf0a47eac79.css?body=1" for ::1 at 2016-04-24 17:57:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:57:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:57:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:57:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:57:24 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-24 17:57:52 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (6.1ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasklist/2" for ::1 at 2016-04-24 17:57:58 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"LRQw4451utvrX8L1oo1Sm/0V97lsDjdKS8SJnIr6bdX70VQFtiRUnwwFRPIsOESszJArZkuT02NJGF2Gr58G/Q==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends good and family", "person_id"=>"2"}, "commit"=>"Update Rails task list", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (1.5ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 2], ["updated_at", "2016-04-25 00:57:58.570769"], ["id", 2]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/tasklist.2 +Completed 302 Found in 9ms (ActiveRecord: 2.7ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-24 17:57:58 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.9ms) +Completed 200 OK in 35ms (Views: 33.3ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist.2" for ::1 at 2016-04-24 17:58:33 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 53ms (Views: 52.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-24 17:58:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 17:58:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 17:58:33 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 17:58:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 17:58:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 17:58:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 17:58:33 -0700 + + +Started GET "/tasklist/6/edit" for ::1 at 2016-04-24 17:58:42 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasklist/6" for ::1 at 2016-04-24 17:58:55 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"1PMvwtEDmnABjbkj3iy4cmpUW4BB+ccNDJWDRWq9tMgCNksk6VJ0NObXPyRQma5FW9GHX2ZkIyQOSVdfT9jf4A==", "rails_task_list"=>{"title"=>"High Five Somebody You Don't Know", "description"=>" Or not", "person_id"=>"3"}, "commit"=>"Update Rails task list", "id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 3], ["updated_at", "2016-04-25 00:58:55.599954"], ["id", 6]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasklist.6 +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasklist.6" for ::1 at 2016-04-24 17:58:55 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 30ms (Views: 28.6ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/4" for ::1 at 2016-04-24 17:59:15 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/4/edit" for ::1 at 2016-04-24 17:59:23 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.4ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasklist/4" for ::1 at 2016-04-24 17:59:27 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SnbmQWZqDFVb7mMoKze4Ohgsj+yLOB2qIvNTG5fMlwacs4KnXjviEby05S+lgq4NKalTM6yl+YMgL4cBsqn8Lg==", "rails_task_list"=>{"title"=>"Go to Second Lunch Again", "description"=>"With friends", "person_id"=>"3"}, "commit"=>"Update Rails task list", "id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 3], ["updated_at", "2016-04-25 00:59:27.511020"], ["id", 4]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasklist.4 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasklist.4" for ::1 at 2016-04-24 17:59:27 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-24 17:59:30 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.4ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.2ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasklist/3" for ::1 at 2016-04-24 17:59:34 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"PENS7jomE8HMXg75vXkBJl6i2vYG2FFarBpBwMeowNzqhjYIAnf9hSsEiP4zzBcRbycGKSFFtXOuxpXa4s2r9A==", "rails_task_list"=>{"title"=>"Go to Lunch today", "description"=>"With Family", "person_id"=>"1"}, "commit"=>"Update Rails task list", "id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 1], ["updated_at", "2016-04-25 00:59:34.011984"], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasklist.3 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasklist.3" for ::1 at 2016-04-24 17:59:34 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 34ms (Views: 33.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/27/edit" for ::1 at 2016-04-24 17:59:40 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"27"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 27]] + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.2ms) +Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasklist/27" for ::1 at 2016-04-24 17:59:44 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"V1YQL82wdBYvBbI+WebN6X+dQHO5abBfF9fPfteGbBiBk3TJ9eGaUshfNDnXU9veThicrJ70VHYVCxtk8uMHMA==", "rails_task_list"=>{"title"=>"The First Task", "description"=>"Get up and dress", "person_id"=>"2"}, "commit"=>"Update Rails task list", "id"=>"27"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 27]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 2], ["updated_at", "2016-04-25 00:59:44.509128"], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasklist.27 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasklist.27" for ::1 at 2016-04-24 17:59:44 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (14.6ms) +Completed 200 OK in 37ms (Views: 35.8ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/28/edit" for ::1 at 2016-04-24 17:59:47 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"28"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 28]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasklist/28" for ::1 at 2016-04-24 17:59:51 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ADIgImAVgFa2/tmIMuzrnp+36zwV6rCP4O69k3Gk4hzW90TEWERuElGkX4+8Wf2prjI34zJ3VKbiMmmJVMGJNA==", "rails_task_list"=>{"title"=>"Go to Brunch", "description"=>"With friends", "person_id"=>"1"}, "commit"=>"Update Rails task list", "id"=>"28"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 28]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 1], ["updated_at", "2016-04-25 00:59:51.591004"], ["id", 28]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasklist.28 +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasklist.28" for ::1 at 2016-04-24 17:59:51 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.5ms) +Completed 200 OK in 34ms (Views: 33.1ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-24 18:50:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/31" for ::1 at 2016-04-24 18:50:53 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"31"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 31]] + Rendered tasklist/show.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-24 18:50:59 -0700 +Processing by TasklistController#new as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.3ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-24 23:34:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (1.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (54.4ms) +Completed 200 OK in 124ms (Views: 103.6ms | ActiveRecord: 2.2ms) + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 23:44:01 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (13.1ms) +Completed 200 OK in 50ms (Views: 49.1ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 23:44:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 23:44:01 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-24 23:44:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 23:44:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 23:44:01 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 23:44:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 23:44:01 -0700 + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 23:44:02 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (19.4ms) +Completed 200 OK in 77ms (Views: 75.8ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 23:44:02 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-24 23:44:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 23:44:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 23:44:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 23:44:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 23:44:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 23:44:02 -0700 + + +Started GET "/tasklist.37" for ::1 at 2016-04-24 23:44:03 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (10.1ms) +Completed 200 OK in 33ms (Views: 32.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-24 23:44:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-24 23:44:03 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-24 23:44:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-24 23:44:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-24 23:44:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-24 23:44:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-24 23:44:03 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-24 23:45:45 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist.28" for ::1 at 2016-04-25 11:08:20 -0700 +Processing by TasklistController#index as + RailsTaskList Load (1.8ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (31.1ms) +Completed 200 OK in 87ms (Views: 77.4ms | ActiveRecord: 2.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 11:08:20 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 11:08:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 11:08:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 11:08:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 11:08:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 11:08:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 11:08:20 -0700 + + +Started PATCH "/tasklist/3/done" for ::1 at 2016-04-25 11:08:28 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"6ofI18mnm6t6zYTdIH3lYhNCGS6rcpQLNa5JJ714WVg8Qqwx8fZ1752XAtquyPNVIsfF8YzvcCI3cp09mB0ycA==", "id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] +  (0.2ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 11:08:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (12.0ms) +Completed 200 OK in 32ms (Views: 30.3ms | ActiveRecord: 0.7ms) + + +Started GET "/tasklist/3/edit" for ::1 at 2016-04-25 11:08:31 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (6.3ms) +Completed 200 OK in 32ms (Views: 30.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist.37" for ::1 at 2016-04-25 11:10:26 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (36.2ms) +Completed 200 OK in 61ms (Views: 59.8ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 11:10:26 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 11:10:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 11:10:26 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 11:10:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 11:10:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 11:10:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 11:10:26 -0700 + + +Started GET "/tasklist/6" for ::1 at 2016-04-25 11:10:34 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/37" for ::1 at 2016-04-25 11:15:38 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"37"} + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 37]] + Person Load (0.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (9.8ms) +Completed 200 OK in 35ms (Views: 25.0ms | ActiveRecord: 1.6ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-25 11:16:36 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/37" for ::1 at 2016-04-25 11:16:46 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"37"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 37]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-25 11:18:49 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist.37" for ::1 at 2016-04-25 12:25:51 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (19.6ms) +Completed 200 OK in 139ms (Views: 135.9ms | ActiveRecord: 1.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 12:25:51 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 12:25:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 12:25:51 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 12:25:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 12:25:51 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 12:25:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 12:25:51 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 12:25:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 12:25:51 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-25 12:25:53 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist.37" for ::1 at 2016-04-25 12:32:32 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (11.1ms) +Completed 200 OK in 39ms (Views: 37.6ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 12:32:32 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 12:32:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 12:32:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 12:32:32 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 12:32:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 12:32:32 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 12:32:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 12:32:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 12:32:32 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 12:32:35 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms) + + +Started GET "/people" for ::1 at 2016-04-25 12:32:39 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms) + + +Started GET "/people" for ::1 at 2016-04-25 14:43:16 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/people/index.html.erb:7: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9ab7206b8b340126/variables" for ::1 at 2016-04-25 14:43:16 -0700 + Person Load (0.2ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 14:45:54 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/people/index.html.erb:7: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/89d5628c5ee17bc4/variables" for ::1 at 2016-04-25 14:45:54 -0700 + Person Load (0.3ms) SELECT "people".* FROM "people" + + +Started GET "/tasklist/2" for ::1 at 2016-04-25 14:46:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/2" for ::1 at 2016-04-25 14:46:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 14:46:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:46:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:46:17 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:46:17 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 14:46:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:46:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:46:17 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:46:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:46:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:46:17 -0700 + + +Started GET "/" for ::1 at 2016-04-25 14:46:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 14:46:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.8ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 14:46:28 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/people/index.html.erb:7: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/people" for ::1 at 2016-04-25 14:46:28 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.5ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/people/index.html.erb:7: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/49616e5606a8bc5d/variables" for ::1 at 2016-04-25 14:46:28 -0700 + Person Load (0.1ms) SELECT "people".* FROM "people" + + +Started GET "/" for ::1 at 2016-04-25 14:47:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:47:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:47:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:47:59 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:47:59 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 14:47:59 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:47:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:47:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:47:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:47:59 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 14:48:00 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/people/index.html.erb:7: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/people" for ::1 at 2016-04-25 14:48:00 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/people/index.html.erb:7: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/80e636ef42f64b6b/variables" for ::1 at 2016-04-25 14:48:00 -0700 + Person Load (0.1ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 14:49:13 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/people/index.html.erb:7: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/439b949415fd96c7/variables" for ::1 at 2016-04-25 14:49:13 -0700 + Person Load (0.5ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 14:49:14 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/people/index.html.erb:7: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6eea78b05d38f408/variables" for ::1 at 2016-04-25 14:49:15 -0700 + Person Load (0.2ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 14:49:33 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:49:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:49:33 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 14:49:33 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:49:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:49:33 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:49:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:49:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:49:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:49:33 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 14:49:46 -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 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:49:46 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:49:46 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 14:49:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:49:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:49:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:49:46 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:49:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:49:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:49:46 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 14:50:54 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:50:54 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:50:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:50:54 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 14:50:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:50:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:50:54 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:50:54 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:50:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:50:54 -0700 + + +Started GET "/" for ::1 at 2016-04-25 14:55:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.5ms) +Completed 200 OK in 36ms (Views: 34.6ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:55:03 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:55:03 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 14:55:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:55:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:55:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:55:03 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:55:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:55:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:55:03 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 14:56:28 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (11.8ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `discription' for # +Did you mean? description: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:9:in `block in _app_views_people_index_html_erb___4451748503944853866_70103356828000' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:3:in `_app_views_people_index_html_erb___4451748503944853866_70103356828000' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/people" for ::1 at 2016-04-25 14:56:28 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (9.9ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `discription' for # +Did you mean? description: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:9:in `block in _app_views_people_index_html_erb___4451748503944853866_70103347405380' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:3:in `_app_views_people_index_html_erb___4451748503944853866_70103347405380' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a42c0c934c78f15b/variables" for ::1 at 2016-04-25 14:56:28 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 14:56:31 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (8.1ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `discription' for # +Did you mean? description: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:9:in `block in _app_views_people_index_html_erb___4451748503944853866_70103347405380' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:3:in `_app_views_people_index_html_erb___4451748503944853866_70103347405380' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4f97a42ea34f40ac/variables" for ::1 at 2016-04-25 14:56:31 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 14:56:32 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (16.0ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `discription' for # +Did you mean? description: + activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing' + app/views/people/index.html.erb:9:in `block in _app_views_people_index_html_erb___4451748503944853866_70103347405380' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:3:in `_app_views_people_index_html_erb___4451748503944853866_70103347405380' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0ab81526214d713b/variables" for ::1 at 2016-04-25 14:56:32 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 14:56:44 -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 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:56:44 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:56:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:56:44 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 14:56:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:56:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:56:44 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:56:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:56:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:56:44 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 14:57:49 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:57:49 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:57:49 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 14:57:49 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:57:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:57:49 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:57:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:57:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:57:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:57:49 -0700 + + +Started GET "/person/:id" for ::1 at 2016-04-25 14:57:50 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>":id"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=:id: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/people_controller.rb:8: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/:id" for ::1 at 2016-04-25 14:57:50 -0700 +Processing by PeopleController#show as HTML + Parameters: {"id"=>":id"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Person with 'id'=:id: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/people_controller.rb:8: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a54c22ad8d3898fd/variables" for ::1 at 2016-04-25 14:57:50 -0700 + + +Started GET "/" for ::1 at 2016-04-25 14:58:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:58:33 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 14:58:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:58:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:58:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:58:33 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:58:33 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:58:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:58:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:58:33 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-25 14:58:36 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:00:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (14.9ms) +Completed 200 OK in 30ms (Views: 28.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:00:14 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:00:14 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:00:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:00:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:00:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:00:14 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:00:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:00:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:00:14 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:04:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (18.8ms) +Completed 200 OK in 37ms (Views: 33.8ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:04:42 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:04:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:04:42 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:04:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:04:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:04:42 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:04:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:04:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:04:42 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:04:45 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected '(', expecting ')' +...k_to task.title, '/person/:id'(task.id));@output_buffer.safe... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected ')', expecting keyword_end +....title, '/person/:id'(task.id));@output_buffer.safe_append=' +... ^: + app/views/people/index.html.erb:9: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/people" for ::1 at 2016-04-25 15:04:45 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected '(', expecting ')' +...k_to task.title, '/person/:id'(task.id));@output_buffer.safe... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected ')', expecting keyword_end +....title, '/person/:id'(task.id));@output_buffer.safe_append=' +... ^: + app/views/people/index.html.erb:9: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/eac717c140f4e134/variables" for ::1 at 2016-04-25 15:04:45 -0700 + Person Load (0.1ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 15:06:05 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting ')' +...title, '/person/:id'people_list);@output_buffer.safe_append=' +... ^: + app/views/people/index.html.erb:9: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7bb4ca13352172e1/variables" for ::1 at 2016-04-25 15:06:05 -0700 + Person Load (0.5ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 15:07:02 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting ')' +...title, '/person/:id'people_list);@output_buffer.safe_append=' +... ^: + app/views/people/index.html.erb:9: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/302567c4036b6a34/variables" for ::1 at 2016-04-25 15:07:02 -0700 + Person Load (0.3ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 15:08:03 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 33ms (Views: 29.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:08:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:08:03 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:08:03 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:08:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:08:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:08:03 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:08:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:08:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:08:03 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:08:20 -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 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:10:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (18.1ms) +Completed 200 OK in 41ms (Views: 38.0ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:10:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:10:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:10:33 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:10:33 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:10:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:10:33 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:10:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:10:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:10:33 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:10:35 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected '(', expecting ')' +..._to task.description, 'person'(task.id));@output_buffer.safe... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected ')', expecting keyword_end +...description, 'person'(task.id));@output_buffer.safe_append=' +... ^: + app/views/people/index.html.erb:9: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/people" for ::1 at 2016-04-25 15:10:35 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected '(', expecting ')' +..._to task.description, 'person'(task.id));@output_buffer.safe... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected ')', expecting keyword_end +...description, 'person'(task.id));@output_buffer.safe_append=' +... ^: + app/views/people/index.html.erb:9: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/81369f5337bef945/variables" for ::1 at 2016-04-25 15:10:35 -0700 + Person Load (0.2ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 15:10:48 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected '(', expecting ')' +...k_to task.description 'person'(task.id));@output_buffer.safe... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected ')', expecting keyword_end +....description 'person'(task.id));@output_buffer.safe_append=' +... ^: + app/views/people/index.html.erb:9: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/66bfaa1c40963fa5/variables" for ::1 at 2016-04-25 15:10:48 -0700 + Person Load (0.2ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 15:10:49 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.8ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected '(', expecting ')' +...k_to task.description 'person'(task.id));@output_buffer.safe... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected ')', expecting keyword_end +....description 'person'(task.id));@output_buffer.safe_append=' +... ^: + app/views/people/index.html.erb:9: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2f901d3bb17775d9/variables" for ::1 at 2016-04-25 15:10:49 -0700 + Person Load (0.1ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 15:11:27 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected '(', expecting ')' +...k_to task.description 'person'(task.id));@output_buffer.safe... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected ')', expecting keyword_end +....description 'person'(task.id));@output_buffer.safe_append=' +... ^: + app/views/people/index.html.erb:9: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/people" for ::1 at 2016-04-25 15:11:28 -0700 +Processing by PeopleController#index as HTML + Rendered people/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected '(', expecting ')' +...k_to task.description 'person'(task.id));@output_buffer.safe... +... ^ +/Users/sakne/C5/projects/TaskListRails/TaskListRails/app/views/people/index.html.erb:9: syntax error, unexpected ')', expecting keyword_end +....description 'person'(task.id));@output_buffer.safe_append=' +... ^: + app/views/people/index.html.erb:9: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b0dd8e1c7674cef4/variables" for ::1 at 2016-04-25 15:11:28 -0700 + Person Load (0.3ms) SELECT "people".* FROM "people" + + +Started GET "/people" for ::1 at 2016-04-25 15:11:46 -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 22ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:11:46 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:11:46 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:11:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:11:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:11:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:11:46 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:11:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:11:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:11:46 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:11:49 -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 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:11:53 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:13:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.7ms) +Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:13:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:13:38 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:13:39 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (22.5ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `person' for #<#:0x007f846dea5788> +Did you mean? person_url: + app/views/people/index.html.erb:5:in `block in _app_views_people_index_html_erb___4451748503944853866_70103378239640' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:3:in `_app_views_people_index_html_erb___4451748503944853866_70103378239640' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/people" for ::1 at 2016-04-25 15:13:39 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (19.3ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `person' for #<#:0x007f846b5302b8> +Did you mean? person_url: + app/views/people/index.html.erb:5:in `block in _app_views_people_index_html_erb___4451748503944853866_70103389130540' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:3:in `_app_views_people_index_html_erb___4451748503944853866_70103389130540' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/58a00984ad9d1cae/variables" for ::1 at 2016-04-25 15:13:40 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:13:53 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (17.8ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `line_to' for #<#:0x007f846dc759e0> +Did you mean? link_to: + app/views/people/index.html.erb:5:in `block in _app_views_people_index_html_erb___4451748503944853866_70103377081140' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:3:in `_app_views_people_index_html_erb___4451748503944853866_70103377081140' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1c3eaef54c6fc90c/variables" for ::1 at 2016-04-25 15:13:53 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:13:54 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (26.6ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `line_to' for #<#:0x007f846f1d8ee0> +Did you mean? link_to: + app/views/people/index.html.erb:5:in `block in _app_views_people_index_html_erb___4451748503944853866_70103377081140' + activerecord (4.2.6) lib/active_record/relation/delegation.rb:46:in `each' + app/views/people/index.html.erb:3:in `_app_views_people_index_html_erb___4451748503944853866_70103377081140' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/261cad0786c2cafd/variables" for ::1 at 2016-04-25 15:13:54 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:14:06 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:14:06 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:14:06 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:14:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:14:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:14:06 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:14:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:14:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:14:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:14:06 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:14:07 -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 53ms (Views: 51.9ms | ActiveRecord: 0.1ms) + + +Started GET "/person/2" for ::1 at 2016-04-25 15:14: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 (0.0ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/person/3" for ::1 at 2016-04-25 15:14:11 -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.0ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:15:13 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:15:13 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:15:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:15:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:15:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:15:13 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:15:13 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:15:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:15:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:15:13 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:15:13 -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: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:15:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:15:14 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:15:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:15:14 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:15:14 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:15:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:15:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:15:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:15:14 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:15: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]] + Rendered people/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:16:52 -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.5ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:16:52 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:16:52 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:16:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:16:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:16:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:16:52 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:16:52 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:16:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:16:52 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:16:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (10.9ms) +Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:17:00 -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 21ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:17:03 -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.5ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:17:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:17:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:17:25 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:17:25 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:17:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:17:25 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:17:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:17:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:17:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:17:25 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 15:17:28 -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 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:17:31 -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 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:17:31 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:17:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:17:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:17:31 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:17:31 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:17:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:17:31 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:17:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:17:31 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:17:32 -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: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:17:34 -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 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15: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 (0.2ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:18:04 -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.5ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:18:05 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:18:05 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:18:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:18:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:18:05 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:18:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:18:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:18:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:18:05 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:23:17 -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.2ms) +Completed 200 OK in 27ms (Views: 20.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:23:17 -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.2ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:23:17 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:23:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (13.8ms) +Completed 200 OK in 34ms (Views: 29.9ms | ActiveRecord: 0.7ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:23:23 -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 25ms (Views: 24.7ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:23: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.5ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:24:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.5ms) 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (10.7ms) +Completed 200 OK in 30ms (Views: 28.2ms | ActiveRecord: 0.9ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:24:36 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:24:38 -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.2ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:27: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 (4.3ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103397487300' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2e9afa613fa1bd72/variables" for ::1 at 2016-04-25 15:27:26 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:28:01 -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.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/people/show.html.erb:20: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/89a417583376eb0f/variables" for ::1 at 2016-04-25 15:28:01 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:28: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 (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input: + app/views/people/show.html.erb:20: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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/549276b61d4bef1f/variables" for ::1 at 2016-04-25 15:28:02 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:28:10 -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.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `task' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103397078660' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7436d629e2bb6706/variables" for ::1 at 2016-04-25 15:28:10 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:28:12 -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.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `task' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103397078660' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/bd02e9a5426cd85d/variables" for ::1 at 2016-04-25 15:28:12 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:28:34 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-25 15:28:35 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:28:43 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/person/2" for ::1 at 2016-04-25 15:28: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]] + Rendered people/show.html.erb within layouts/application (4.2ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `task' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103377208640' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/2" for ::1 at 2016-04-25 15:28: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]] + Rendered people/show.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `task' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103397078660' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1b2e2f0eb5a5f615/variables" for ::1 at 2016-04-25 15:28:45 -0700 + + +Started GET "/person/2" for ::1 at 2016-04-25 15:30:30 -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 (2.8ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `task' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103397078660' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/05a817f09ff6465c/variables" for ::1 at 2016-04-25 15:30:30 -0700 + + +Started GET "/person/2" for ::1 at 2016-04-25 15:30:31 -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.0ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `task' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103397078660' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/75cfa9c120e22510/variables" for ::1 at 2016-04-25 15:30:31 -0700 + + +Started GET "/person/2" for ::1 at 2016-04-25 15:30:57 -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.9ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_lists' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103388521080' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a6520c7ba0a8ae13/variables" for ::1 at 2016-04-25 15:30:57 -0700 + + +Started GET "/person/2" for ::1 at 2016-04-25 15:30: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]] + Rendered people/show.html.erb within layouts/application (5.1ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_lists' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103388521080' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4b19667f816a4ec2/variables" for ::1 at 2016-04-25 15:30:58 -0700 + + +Started GET "/person/2" for ::1 at 2016-04-25 15:31: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 (3.9ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `rails_task_lists' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103388521080' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3c1ffea4bd49f9f1/variables" for ::1 at 2016-04-25 15:31:44 -0700 + + +Started GET "/person/2" for ::1 at 2016-04-25 15:34: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 (4.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103378146980' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e7db90e2b35a2cfc/variables" for ::1 at 2016-04-25 15:34:03 -0700 + + +Started GET "/person/2" for ::1 at 2016-04-25 15:34:04 -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 (4.4ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103378146980' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a905631bf1632364/variables" for ::1 at 2016-04-25 15:34:04 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:34:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (13.4ms) +Completed 200 OK in 37ms (Views: 33.8ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-25 15:34:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (10.0ms) +Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist/28" for ::1 at 2016-04-25 15:34:43 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"28"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 28]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.3ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:34:51 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:34:52 -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 (5.0ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103356565600' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 15:34:52 -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.1ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103378146980' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d31a216a830e2914/variables" for ::1 at 2016-04-25 15:34:52 -0700 + + +Started GET "/person/3" for ::1 at 2016-04-25 15:35:01 -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 (3.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103356565600' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/3" for ::1 at 2016-04-25 15:35:01 -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 (4.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103378146980' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fc81a6df0e6b8ec8/variables" for ::1 at 2016-04-25 15:35:01 -0700 + + +Started GET "/person/3" for ::1 at 2016-04-25 15:35:04 -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 (14.1ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103356565600' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/3" for ::1 at 2016-04-25 15:35:04 -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 (2.6ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2064099344419671636_70103378146980' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f8686357c8ad1791/variables" for ::1 at 2016-04-25 15:35:05 -0700 + + +Started GET "/person/3" for ::1 at 2016-04-25 15:35:37 -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.6ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:35:37 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:35:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:35:37 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:35:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:35:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:35:37 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:35:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:35:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:35:37 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:36:30 -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.7ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:41: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 (1.3ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:41:24 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:41:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:41:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:41:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:41:24 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:41:24 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:41:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:41:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:41:24 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:41:25 -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.2ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:41:25 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:41:25 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:41:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:41:25 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:41:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:41:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:41:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:41:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:41:25 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:41:35 -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.5ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:41:35 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:41:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:41:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:41:36 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:41:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:41:36 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:41:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:41:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:41:36 -0700 + + +Started GET "/people/" for ::1 at 2016-04-25 15:41:38 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:41: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.9ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:41:43 -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 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:41:44 -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.8ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:42:33 -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 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:42: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.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:43:47 -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.2ms) +Completed 200 OK in 32ms (Views: 25.6ms | ActiveRecord: 0.5ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:43:49 -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 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:45:23 -0700 +Processing by PeopleController#index as HTML + Person Load (0.4ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/people/" for ::1 at 2016-04-25 15:45:23 -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 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:45:23 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:45:25 -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.2ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:45:27 -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: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:46:19 -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 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:46:19 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:46:19 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:46:19 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:46:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:46:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:46:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:46:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:46:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:46:19 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:46: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.6ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:46:22 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:48:32 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/people/" for ::1 at 2016-04-25 15:48:32 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:48:33 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:48:34 -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.8ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:48:35 -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.5ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:48:35 -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.2ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:48:35 -0700 + + +Started GET "/people/" for ::1 at 2016-04-25 15:48:37 -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 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:49:05 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (35.7ms) +Completed 200 OK in 353ms (Views: 340.4ms | ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-25 15:49:06 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 44ms (Views: 42.4ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:49:09 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:49:10 -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 22ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:49:11 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:49: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 (0.6ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:49:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:49:36 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:49:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:49:36 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:49:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:49:36 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:49:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:49:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:49:36 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:49: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 (0.2ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:49:36 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:49:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:49:37 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:49:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:49:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:49:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:49:37 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:49:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:49:37 -0700 + + +Started GET "/people/" for ::1 at 2016-04-25 15:49:39 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:51:32 -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 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:51:32 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:51:32 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:51:32 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:51:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:51:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:51:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:51:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:51:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:51:32 -0700 + + +Started GET "/people/" for ::1 at 2016-04-25 15:51:33 -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 18ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:51:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:51:33 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:51:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:51:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:51:33 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:51:33 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:51:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:51:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:51:33 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:51: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]] + Rendered people/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:51:35 -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 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:52:48 -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.5ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:52:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 15:52:48 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 15:52:48 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 15:52:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 15:52:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 15:52:48 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:52:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 15:52:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 15:52:48 -0700 + + +Started GET "/people/" for ::1 at 2016-04-25 15:52:49 -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 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:52:59 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-25 15:53:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (12.3ms) +Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 0.9ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:53:19 -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 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:53:23 -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.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:53: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.2ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:53:51 -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 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/people/" for ::1 at 2016-04-25 15:53:55 -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 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:54:32 -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 (5.7ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191839745620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/bc789688aa9c4422/variables" for ::1 at 2016-04-25 15:54:32 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:54:34 -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 (2.5ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191839745620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/84a81476d07bec01/variables" for ::1 at 2016-04-25 15:54:34 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:54:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 15:54:37 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.3ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.6ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:54:42 -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 21ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:54:43 -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 (4.6ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191840840780' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 15:54:43 -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 (5.2ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191839745620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6892321862369d2a/variables" for ::1 at 2016-04-25 15:54:43 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:55:18 -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 (2.8ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191839745620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f4b9ec71b10713a2/variables" for ::1 at 2016-04-25 15:55:18 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:55:23 -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 (2.2ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191839745620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3e6a446fabf02696/variables" for ::1 at 2016-04-25 15:55:23 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:55: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 (4.8ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191839745620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1486d69c3c31eedf/variables" for ::1 at 2016-04-25 15:55:24 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:56:08 -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 (9.6ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191839745620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e5f09c3835242044/variables" for ::1 at 2016-04-25 15:56:08 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:56:10 -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 (2.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191839745620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9577f56ab7d00f1a/variables" for ::1 at 2016-04-25 15:56:10 -0700 + + +Started POST "/__better_errors/9577f56ab7d00f1a/eval" for ::1 at 2016-04-25 15:56:24 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:57:23 -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 (9.5ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191839745620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fe9983c0b79ce52d/variables" for ::1 at 2016-04-25 15:57:23 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:57: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 (5.2ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___1253563239542583512_70191839745620' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1f3d7a21629ab1b9/variables" for ::1 at 2016-04-25 15:57:24 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:57:48 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (34.0ms) +Completed 200 OK in 312ms (Views: 299.1ms | ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-25 15:57:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.2ms) +Completed 200 OK in 27ms (Views: 25.2ms | ActiveRecord: 0.6ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:57:53 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:57:54 -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 (4.7ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931378260' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 15:57:54 -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 (5.7ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931376000' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1cac46da0abe7ec8/variables" for ::1 at 2016-04-25 15:57:54 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:57:59 -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 (2.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931378260' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 15:57: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]] + Rendered people/show.html.erb within layouts/application (3.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931376000' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ed21ce01624b91b0/variables" for ::1 at 2016-04-25 15:57:59 -0700 + + +Started GET "/" for ::1 at 2016-04-25 15:58:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (12.0ms) +Completed 200 OK in 35ms (Views: 29.8ms | ActiveRecord: 0.8ms) + + +Started GET "/people" for ::1 at 2016-04-25 15:58:13 -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 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 15:58:18 -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 (4.8ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931378260' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 15:58:18 -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.7ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931376000' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b94c51dc362aab9e/variables" for ::1 at 2016-04-25 15:58:18 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:59: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 (2.3ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931376000' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/afcdd05e148e7e96/variables" for ::1 at 2016-04-25 15:59:22 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:59:23 -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 (4.9ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931376000' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f90ce0edc5ded653/variables" for ::1 at 2016-04-25 15:59:23 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 15:59:27 -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.1ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931378260' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 15:59:27 -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 (2.5ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931376000' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1c6c7f6575aefc41/variables" for ::1 at 2016-04-25 15:59:27 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:01:00 -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 (2.4ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931376000' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/73c1e680efe2ca38/variables" for ::1 at 2016-04-25 16:01:00 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:01:01 -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 (5.8ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931376000' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9ed6371c5e5376d4/variables" for ::1 at 2016-04-25 16:01:01 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:01:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (12.2ms) +Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.8ms) + + +Started GET "/tasklist/37" for ::1 at 2016-04-25 16:01:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"37"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 37]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.4ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:01:17 -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 19ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/person/3" for ::1 at 2016-04-25 16:01:19 -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 (3.6ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931378260' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/3" for ::1 at 2016-04-25 16:01:19 -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 (2.3ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__1990589654929999117_70227931376000' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/feeeb3810d32165d/variables" for ::1 at 2016-04-25 16:01:19 -0700 diff --git a/TaskListRails/public/404.html b/public/404.html similarity index 100% rename from TaskListRails/public/404.html rename to public/404.html diff --git a/TaskListRails/public/422.html b/public/422.html similarity index 100% rename from TaskListRails/public/422.html rename to public/422.html diff --git a/TaskListRails/public/500.html b/public/500.html similarity index 100% rename from TaskListRails/public/500.html rename to public/500.html diff --git a/TaskListRails/public/favicon.ico b/public/favicon.ico similarity index 100% rename from TaskListRails/public/favicon.ico rename to public/favicon.ico diff --git a/TaskListRails/public/robots.txt b/public/robots.txt similarity index 100% rename from TaskListRails/public/robots.txt rename to public/robots.txt diff --git a/seeds.rb b/seeds.rb deleted file mode 100644 index ca710f848..000000000 --- a/seeds.rb +++ /dev/null @@ -1,20 +0,0 @@ -def random_time - Time.at(rand * Time.now.to_i) -end - -RailsTaskList = [ - { 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 } -] - -RailsTaskList.each do |task| - RailsTaskList.create task -end diff --git a/TaskListRails/test/controllers/.keep b/test/controllers/.keep similarity index 100% rename from TaskListRails/test/controllers/.keep rename to test/controllers/.keep diff --git a/TaskListRails/test/controllers/people_controller_test.rb b/test/controllers/people_controller_test.rb similarity index 100% rename from TaskListRails/test/controllers/people_controller_test.rb rename to test/controllers/people_controller_test.rb diff --git a/TaskListRails/test/controllers/tasklist_controller_test.rb b/test/controllers/tasklist_controller_test.rb similarity index 100% rename from TaskListRails/test/controllers/tasklist_controller_test.rb rename to test/controllers/tasklist_controller_test.rb diff --git a/TaskListRails/test/fixtures/.keep b/test/fixtures/.keep similarity index 100% rename from TaskListRails/test/fixtures/.keep rename to test/fixtures/.keep diff --git a/TaskListRails/test/fixtures/people.yml b/test/fixtures/people.yml similarity index 100% rename from TaskListRails/test/fixtures/people.yml rename to test/fixtures/people.yml diff --git a/TaskListRails/test/fixtures/rails_task_lists.yml b/test/fixtures/rails_task_lists.yml similarity index 100% rename from TaskListRails/test/fixtures/rails_task_lists.yml rename to test/fixtures/rails_task_lists.yml diff --git a/TaskListRails/test/helpers/.keep b/test/helpers/.keep similarity index 100% rename from TaskListRails/test/helpers/.keep rename to test/helpers/.keep diff --git a/TaskListRails/test/integration/.keep b/test/integration/.keep similarity index 100% rename from TaskListRails/test/integration/.keep rename to test/integration/.keep diff --git a/TaskListRails/test/mailers/.keep b/test/mailers/.keep similarity index 100% rename from TaskListRails/test/mailers/.keep rename to test/mailers/.keep diff --git a/TaskListRails/test/models/.keep b/test/models/.keep similarity index 100% rename from TaskListRails/test/models/.keep rename to test/models/.keep diff --git a/TaskListRails/test/models/person_test.rb b/test/models/person_test.rb similarity index 100% rename from TaskListRails/test/models/person_test.rb rename to test/models/person_test.rb diff --git a/TaskListRails/test/models/rails_task_list_test.rb b/test/models/rails_task_list_test.rb similarity index 100% rename from TaskListRails/test/models/rails_task_list_test.rb rename to test/models/rails_task_list_test.rb diff --git a/TaskListRails/test/test_helper.rb b/test/test_helper.rb similarity index 100% rename from TaskListRails/test/test_helper.rb rename to test/test_helper.rb diff --git a/TaskListRails/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep similarity index 100% rename from TaskListRails/vendor/assets/javascripts/.keep rename to vendor/assets/javascripts/.keep diff --git a/TaskListRails/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep similarity index 100% rename from TaskListRails/vendor/assets/stylesheets/.keep rename to vendor/assets/stylesheets/.keep From 586c078a8a64824ba4f300f33102c7704e4eef8d Mon Sep 17 00:00:00 2001 From: Sarah Date: Mon, 25 Apr 2016 17:13:40 -0700 Subject: [PATCH 11/23] task list working --- .gitignore | 46 +- app/controllers/people_controller.rb | 3 +- app/views/people/all_tasklist.erb | 5 + app/views/people/index.html.erb | 2 +- app/views/people/show.html.erb | 6 +- config/routes.rb | 2 +- log/development.log | 5173 ++++++++++++++++++++++++++ 7 files changed, 5200 insertions(+), 37 deletions(-) create mode 100644 app/views/people/all_tasklist.erb diff --git a/.gitignore b/.gitignore index 28f484983..050c9d95c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,35 +1,17 @@ -*.gem -*.rbc -/.config -/coverage/ -/InstalledFiles -/pkg/ -/spec/reports/ -/test/tmp/ -/test/version_tmp/ -/tmp/ +# 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' -## Specific to RubyMotion: -.dat* -.repl_history -build/ +# Ignore bundler config. +/.bundle -## Documentation cache and generated files: -/.yardoc/ -/_yardoc/ -/doc/ -/rdoc/ +# Ignore the default SQLite database. +/db/*.sqlite3 +/db/*.sqlite3-journal -## Environment normalisation: -/.bundle/ -/vendor/bundle -/lib/bundler/man/ - -# for a library or gem, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# Gemfile.lock -# .ruby-version -# .ruby-gemset - -# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: -.rvmrc +# Ignore all logfiles and tempfiles. +/log/* +!/log/.keep +/tmp diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb index e68940ca8..06eb94b36 100644 --- a/app/controllers/people_controller.rb +++ b/app/controllers/people_controller.rb @@ -5,7 +5,8 @@ def index def show - @all_people = Person.find(params[:id]) + @people = Person.find(params[:id]) + end def all_tasklist diff --git a/app/views/people/all_tasklist.erb b/app/views/people/all_tasklist.erb new file mode 100644 index 000000000..fe6c2525a --- /dev/null +++ b/app/views/people/all_tasklist.erb @@ -0,0 +1,5 @@ +

                                                                  list of tasks

                                                                  + +<%@list.each do |task|%> +<%= task.title%> +<%end%> diff --git a/app/views/people/index.html.erb b/app/views/people/index.html.erb index 850d1281c..e4a773fbf 100644 --- a/app/views/people/index.html.erb +++ b/app/views/people/index.html.erb @@ -2,7 +2,7 @@ <%@all_people.each do |task|%>
                                                                • - <%=link_to task.name, person_path(task.id)%> + <%=link_to task.name, task_path(task.id)%>
                                                                • diff --git a/app/views/people/show.html.erb b/app/views/people/show.html.erb index 3dc075a06..a5125a3d3 100644 --- a/app/views/people/show.html.erb +++ b/app/views/people/show.html.erb @@ -1,9 +1,11 @@

                                                                  More Info

                                                                  +<%@person.each do |task|%> -<%=@all_people.name%> +<%=task.name%> +<%end%> -<%=link_to 'all_tasklist', "/people/#{@person.id}/all_tasks"%> +<%=link_to 'all_tasklist',task_path%> diff --git a/config/routes.rb b/config/routes.rb index 63815bcb2..1f94a4b47 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -21,7 +21,7 @@ delete '/tasklist/:id' => 'tasklist#delete', as: 'delete' get '/people' => 'people#index' get '/person/:id' => 'people#show', as: 'person' - get '/people/:id/all_tasklist' => 'people#all_tasklist' + get '/people/:id/all_tasklist' => 'people#all_tasklist', as: 'task' diff --git a/log/development.log b/log/development.log index 7524b9917..31e0ce08d 100644 --- a/log/development.log +++ b/log/development.log @@ -90153,3 +90153,5176 @@ NoMethodError - undefined method `id' for nil:NilClass: Started POST "/__better_errors/feeeb3810d32165d/variables" for ::1 at 2016-04-25 16:01:19 -0700 + + +Started GET "/person/3" for ::1 at 2016-04-25 16:28:36 -0700 + +LoadError - cannot load such file -- /Users/sakne/C5/projects/TaskListRails/TaskListRails/config/routes.rb: + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/db6fcf774a98ea93/variables" for ::1 at 2016-04-25 16:28:37 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:28:45 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.4ms) + Rendered /Users/sakne/.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/sakne/.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.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (58.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.6ms) + + +Started GET "/" for ::1 at 2016-04-25 16:28:45 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (43.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.3ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (74.0ms) + + +Started POST "/__better_errors/9ed6371c5e5376d4/variables" for ::1 at 2016-04-25 16:28:46 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:28:50 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (41.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (75.1ms) + + +Started GET "/" for ::1 at 2016-04-25 16:28:56 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (54.4ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (76.4ms) + + +Started GET "/" for ::1 at 2016-04-25 16:28:59 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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 (41.2ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (71.2ms) + + +Started GET "/" for ::1 at 2016-04-25 16:28:59 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.5ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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 (6.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (59.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.2ms) + + +Started POST "/__better_errors/9ed6371c5e5376d4/variables" for ::1 at 2016-04-25 16:29:00 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:29:03 -0700 + +ActionController::RoutingError (No route matches [GET] "/person/1"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.0ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (74.2ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 16:29:04 -0700 + +ActionController::RoutingError (No route matches [GET] "/person/1"): + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.8ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (74.7ms) + + +Started GET "/" for ::1 at 2016-04-25 16:29:28 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.6ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.1ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (72.6ms) + + +Started GET "/" for ::1 at 2016-04-25 16:29:37 -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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.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.9ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/sakne/.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/sakne/.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/sakne/.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/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.7ms) + Rendered /Users/sakne/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (74.3ms) + + +Started GET "/" for ::1 at 2016-04-25 16:30:26 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (36.4ms) +Completed 200 OK in 293ms (Views: 279.8ms | ActiveRecord: 1.0ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:30:29 -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: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 16:30:33 -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 (4.6ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2869971710718326367_70352675175320' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 16:30:33 -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 (19.9ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2869971710718326367_70352670852500' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c7f066a38cb545af/variables" for ::1 at 2016-04-25 16:30:33 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:31:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 16:31:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:31:29 -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 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 16:31:32 -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 (2.4ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2869971710718326367_70352675175320' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 16:31:32 -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 (2.2ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2869971710718326367_70352670852500' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/43ea76f92753a7c9/variables" for ::1 at 2016-04-25 16:31:32 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:34:07 -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 (2.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2869971710718326367_70352670852500' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b508cd971d7e4e6d/variables" for ::1 at 2016-04-25 16:34:07 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:34:08 -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.2ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2869971710718326367_70352670852500' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/58226bc8c6399390/variables" for ::1 at 2016-04-25 16:34:08 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:35: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 (2.6ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2869971710718326367_70352670852500' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fbadddeaed562998/variables" for ::1 at 2016-04-25 16:35:23 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:35:47 -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 (2.4ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2869971710718326367_70352670852500' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c485460b96baeaf0/variables" for ::1 at 2016-04-25 16:35:47 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:36:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 16:36:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.6ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:36:28 -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 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 16:36:30 -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 (2.3ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2869971710718326367_70352675175320' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 16:36:30 -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.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb__2869971710718326367_70352670852500' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/6de9da3953c18289/variables" for ::1 at 2016-04-25 16:36:30 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:37:12 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (34.2ms) +Completed 200 OK in 290ms (Views: 277.0ms | ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-25 16:37:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (10.4ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.6ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:37: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.2ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 16:37:17 -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 (4.8ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___4397005325480612453_70195784702560' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 16:37:17 -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 (2.6ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `id' for nil:NilClass: + app/views/people/show.html.erb:6:in `_app_views_people_show_html_erb___4397005325480612453_70195820308280' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/893f97ca3088da70/variables" for ::1 at 2016-04-25 16:37:17 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:47:31 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (34.3ms) +Completed 200 OK in 491ms (Views: 477.3ms | ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-04-25 16:47:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-25 16:47:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:47:38 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 16:47:40 -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 (6.0ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099717648140' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 16:47:40 -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 (5.5ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099667544220' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/dfd62506bc130e80/variables" for ::1 at 2016-04-25 16:47:40 -0700 + + +Started POST "/__better_errors/dfd62506bc130e80/eval" for ::1 at 2016-04-25 16:47:51 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:48:49 -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 (9.4ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.7ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099667544220' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/eedec92c4b2b941a/variables" for ::1 at 2016-04-25 16:48:49 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:48:52 -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 (2.4ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099667544220' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/12ee371e37ef71f0/variables" for ::1 at 2016-04-25 16:48:52 -0700 + + +Started POST "/__better_errors/12ee371e37ef71f0/eval" for ::1 at 2016-04-25 16:49:01 -0700 + + +Started POST "/__better_errors/12ee371e37ef71f0/eval" for ::1 at 2016-04-25 16:49:04 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:49:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (12.8ms) +Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-25 16:49:15 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 16:49:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:49:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:49:18 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 16:49:19 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 16:49:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:49:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:49:19 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:49:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:49:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:49:19 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:49:21 -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 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 16:49: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 (3.3ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099717648140' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 16:49: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 (3.2ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099667544220' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ebf9647ffed05a30/variables" for ::1 at 2016-04-25 16:49:24 -0700 + + +Started POST "/__better_errors/ebf9647ffed05a30/eval" for ::1 at 2016-04-25 16:49:59 -0700 + + +Started POST "/__better_errors/ebf9647ffed05a30/eval" for ::1 at 2016-04-25 16:50:05 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:50:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (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", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (12.9ms) +Completed 200 OK in 28ms (Views: 25.9ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-25 16:50:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 16:50:23 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 16:50:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:50:23 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 16:50:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:50:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:50:23 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:50:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:50:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:50:23 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:50:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 16:50:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 16:50:24 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 16:50:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 16:50:24 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 16:50:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 16:50:24 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:50:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 16:50:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 16:50:24 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 16:50:26 -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 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 16:50:28 -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.6ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099717648140' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 16:50:28 -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 (2.5ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099667544220' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/37ea44eb8e9762a2/variables" for ::1 at 2016-04-25 16:50:28 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:55:05 -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 (2.3ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099667544220' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1b9736998ca873a3/variables" for ::1 at 2016-04-25 16:55:05 -0700 + + +Started GET "/" for ::1 at 2016-04-25 16:55:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (13.8ms) +Completed 200 OK in 30ms (Views: 27.9ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-04-25 16:55:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.4ms) +Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.7ms) + + +Started GET "/people" for ::1 at 2016-04-25 16:55:17 -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 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 16:55:18 -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.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099717648140' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 16:55:18 -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 (2.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/people/show.html.erb:4:in `_app_views_people_show_html_erb___2493932643370652240_70099667544220' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f6befc2cc90176c2/variables" for ::1 at 2016-04-25 16:55:18 -0700 + + +Started POST "/__better_errors/f6befc2cc90176c2/eval" for ::1 at 2016-04-25 16:55:30 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:55: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]] +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.5ms) + +RuntimeError - : + app/controllers/people_controller.rb:9: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3e348a3d2dbe45db/variables" for ::1 at 2016-04-25 16:55:49 -0700 + + +Started POST "/__better_errors/3e348a3d2dbe45db/eval" for ::1 at 2016-04-25 16:55:55 -0700 + + +Started POST "/__better_errors/3e348a3d2dbe45db/eval" for ::1 at 2016-04-25 16:56:03 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:57:52 -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 (3.1ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.5ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:3:in `_app_views_people_show_html_erb___2493932643370652240_70099711534720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2bb35191d23358b2/variables" for ::1 at 2016-04-25 16:57:52 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:57:53 -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 (6.1ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:3:in `_app_views_people_show_html_erb___2493932643370652240_70099711534720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/fa0d0e1d4b6cbb5d/variables" for ::1 at 2016-04-25 16:57:53 -0700 + + +Started POST "/__better_errors/fa0d0e1d4b6cbb5d/eval" for ::1 at 2016-04-25 16:57:57 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:58:50 -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 (2.4ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:3:in `_app_views_people_show_html_erb___2493932643370652240_70099711534720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a676e57d26c5672e/variables" for ::1 at 2016-04-25 16:58:50 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 16:58:51 -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 (4.2ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:3:in `_app_views_people_show_html_erb___2493932643370652240_70099711534720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ebaa5f31e7691913/variables" for ::1 at 2016-04-25 16:58:51 -0700 + + +Started GET "/" for ::1 at 2016-04-25 17:00:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (14.0ms) +Completed 200 OK in 31ms (Views: 28.5ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-04-25 17:00:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 17:00:26 -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 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/person/1" for ::1 at 2016-04-25 17:00:29 -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.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:3:in `_app_views_people_show_html_erb___2493932643370652240_70099694001160' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/person/1" for ::1 at 2016-04-25 17:00:29 -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.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:3:in `_app_views_people_show_html_erb___2493932643370652240_70099711534720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c8c3ff3b7f296ee6/variables" for ::1 at 2016-04-25 17:00:29 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 17:02:19 -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.1ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:3:in `_app_views_people_show_html_erb___2493932643370652240_70099711534720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/48da47f05abe6588/variables" for ::1 at 2016-04-25 17:02:19 -0700 + + +Started GET "/person/1" for ::1 at 2016-04-25 17:02:20 -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 (6.3ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/people/show.html.erb:3:in `_app_views_people_show_html_erb___2493932643370652240_70099711534720' + 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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e40d74277262e8e6/variables" for ::1 at 2016-04-25 17:02:20 -0700 + + +Started GET "/" for ::1 at 2016-04-25 17:02:23 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 17:02:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (10.2ms) +Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.6ms) + + +Started GET "/people" for ::1 at 2016-04-25 17:02:28 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 33ms (Views: 32.2ms | ActiveRecord: 0.1ms) + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-25 17:02:35 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.1ms) + +ActionView::MissingTemplate - Missing template people/all_tasklist, application/all_tasklist with {:locale=>[:en], :formats=>[:html, :xml], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-25 17:02:35 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms) + +ActionView::MissingTemplate - Missing template people/all_tasklist, application/all_tasklist with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/sakne/C5/projects/TaskListRails/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/sakne/.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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7c06e3685c68a8c7/variables" for ::1 at 2016-04-25 17:02:35 -0700 + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? [["person_id", 1]] + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-25 17:03:58 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? [["person_id", 1]] + Rendered people/all_tasklist.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 14.5ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 17:03:58 -0700 + + +Started GET "/assets/application.self-9006b3eb903a74071f0451ff1a93350dbc9d063b8ea6c55511a27ee277e0f914.css?body=1" for ::1 at 2016-04-25 17:03:58 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 17:03:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 17:03:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 17:03:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 17:03:58 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 17:03:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 17:03:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 17:03:58 -0700 From eeda1e8a0ba5a35aa619588c59162094752e1059 Mon Sep 17 00:00:00 2001 From: Sarah Date: Mon, 25 Apr 2016 17:29:34 -0700 Subject: [PATCH 12/23] list of done and not done working' --- app/controllers/people_controller.rb | 3 ++- app/views/people/all_tasklist.erb | 13 +++++++++++-- db/development.sqlite3 | Bin 24576 -> 24576 bytes 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb index 06eb94b36..10587b055 100644 --- a/app/controllers/people_controller.rb +++ b/app/controllers/people_controller.rb @@ -11,7 +11,8 @@ def show def all_tasklist @person = Person.find(params[:id]) - @list = @person.rails_task_lists + @list = @person.rails_task_lists.where.not(completion_status: "done") + @done_list = @person.rails_task_lists.where(completion_status: "done") end end diff --git a/app/views/people/all_tasklist.erb b/app/views/people/all_tasklist.erb index fe6c2525a..533a3e457 100644 --- a/app/views/people/all_tasklist.erb +++ b/app/views/people/all_tasklist.erb @@ -1,5 +1,14 @@

                                                                  list of tasks

                                                                  - +

                                                                  Not Done!

                                                                  <%@list.each do |task|%> -<%= task.title%> +
                                                                • + <%= task.title%> +
                                                                • +<%end%> + +

                                                                  Done

                                                                  +<%@done_list.each do |task|%> +
                                                                • + <%=task.title%> +
                                                                • <%end%> diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 5ee776aebcbd73a11037b94564ae94f1e8aa03fe..1875fa76eb65d5cc53ef4ff44892648c2a2d1d41 100644 GIT binary patch delta 417 zcmZoTz}Rqrae_2s%0wAw#*~c-3-y(`CNuDH_ObBG@Gar~%csM;jOQ$O6HgI;AGaXa zOfC-2K3?z5DhByng4|UMY`Ust@|+C1s-pIejtrCMTFFd4VC5iareI)TWn^h(V5nzo zW?*h%K3UK@lb7K7plCR)YRGOEZFA_vE!U{80NWtc=a{%#4hTjSMHB zwaJp^?_dyV* z3@nT+44E34!P-P8JKO3^F0*xzgefsG)ibd)GB7h{E@K7zd-8c(g~{J+k$hpOXKHC; zWMnyciQN-*1_lN;W#s}{P6lOVa2P@S-~;kPcxFk4f?Hy4W=`eg_4Wu8j4gn^urM?< IUgV$v0Ia}eK>z>% delta 389 zcmZoTz}Rqrae_2s>_i!7#@LMs3-y(G(i!+T&Dr>6_?B@0(=^A+s23=KUdq>BBoWx3nu*{UydIGBLF> zHPJINGc+_eBI+gtFf7prKv?JGY5nIy8|P?E3UQ<|5Y5uRC+q2QL7o0(Gy^YVIo2Vlr>Pkvy}w#Y#N0CK} Date: Mon, 25 Apr 2016 17:56:24 -0700 Subject: [PATCH 13/23] working again --- app/controllers/people_controller.rb | 2 +- app/controllers/tasklist_controller.rb | 2 +- app/views/people/all_tasklist.erb | 3 ++- config/routes.rb | 22 +++++++++++----------- db/development.sqlite3 | Bin 24576 -> 24576 bytes log/development.log | 3 +++ 6 files changed, 18 insertions(+), 14 deletions(-) diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb index 10587b055..d70e5d6de 100644 --- a/app/controllers/people_controller.rb +++ b/app/controllers/people_controller.rb @@ -11,7 +11,7 @@ def show def all_tasklist @person = Person.find(params[:id]) - @list = @person.rails_task_lists.where.not(completion_status: "done") + @list = @person.rails_task_lists.where(completion_status: nil) @done_list = @person.rails_task_lists.where(completion_status: "done") end diff --git a/app/controllers/tasklist_controller.rb b/app/controllers/tasklist_controller.rb index 07a407ce1..7dadc97ba 100644 --- a/app/controllers/tasklist_controller.rb +++ b/app/controllers/tasklist_controller.rb @@ -66,7 +66,7 @@ def delete private def tasklist_params - params.permit(rails_task_list: [:title, :description,]) + params.permit(rails_task_list: [:title, :description, :person_id]) end def edit_params diff --git a/app/views/people/all_tasklist.erb b/app/views/people/all_tasklist.erb index 533a3e457..49fa3c1ee 100644 --- a/app/views/people/all_tasklist.erb +++ b/app/views/people/all_tasklist.erb @@ -1,8 +1,9 @@

                                                                  list of tasks

                                                                  +

                                                                  Not Done!

                                                                  <%@list.each do |task|%>
                                                                • - <%= task.title%> + <%=task.title%>
                                                                • <%end%> diff --git a/config/routes.rb b/config/routes.rb index 1f94a4b47..94ee94853 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -10,17 +10,17 @@ # PUT /rails_task_list/:id(.:format) rails_task_list#update # DELETE /rails_task_list/:id(.:format) rails_task_list#destroy - get '/tasklist' => 'tasklist#index', as: 'rails_task_lists' - get '/tasklist/new' => 'tasklist#new', as: 'tasklist_new' - post '/tasklist' => 'tasklist#create' - get '/tasklist/:id' => 'tasklist#show', as: 'rails_task_list' - get '/tasklist/:id/edit' => 'tasklist#edit', as: 'edit_tasklist' - put '/tasklist/:id' => 'tasklist#update' - patch '/tasklist/:id/done' => 'tasklist#finished', as: "done_task_list" - patch '/tasklist/:id' => 'tasklist#update' - delete '/tasklist/:id' => 'tasklist#delete', as: 'delete' - get '/people' => 'people#index' - get '/person/:id' => 'people#show', as: 'person' + get '/tasklist' => 'tasklist#index', as: 'rails_task_lists' + get '/tasklist/new' => 'tasklist#new', as: 'tasklist_new' + post '/tasklist' => 'tasklist#create' + get '/tasklist/:id' => 'tasklist#show', as: 'rails_task_list' + get '/tasklist/:id/edit' => 'tasklist#edit', as: 'edit_tasklist' + put '/tasklist/:id' => 'tasklist#update' + patch '/tasklist/:id/done' => 'tasklist#finished', as: "done_task_list" + patch '/tasklist/:id' => 'tasklist#update' + delete '/tasklist/:id' => 'tasklist#delete', as: 'delete' + get '/people' => 'people#index' + get '/person/:id' => 'people#show', as: 'person' get '/people/:id/all_tasklist' => 'people#all_tasklist', as: 'task' diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 1875fa76eb65d5cc53ef4ff44892648c2a2d1d41..ac7e69dba6eee8131ca00240a573b62fe829eeef 100644 GIT binary patch delta 747 zcmZ{iO>fgM9L5tWwap1G;{rvwz$jad9lymc5{d?52(3b5650jua7>y+sni4}P8kh%1MQGt$1wPJ9iVj#V@RzsdGv|DL~J4v*c#WB1b)xB7f_%dL)He7oIQ>z;h+ z!D|->{h$5q-ml(=-kt7A|NYUs@7;QD({qMH$B7~@dJsLF_>=oj{oUxvqt#IW5gS1= z3YZU}q*OuU^(ilqBmj&+hS^d&Rj@?XNeGP5 zg}qyzvvGX^%+e+&xvg1}H{E4f1&~l;47g2*o>K^~0YQXu+Ic?oob}OK6RgTJZPKPq zOQWrYvHet=T-jF7inzt$5(+>AfoLmu!X-ff!vGW1DQ|ktc&jn+^ciw&>IQ1`*cvFK zGnE=!t(6^GXOoUquCvmvIB$z&zyT40qOcVZk&uB9VGhN!b^E+%ab-Iyi~aq1tTLm@ zYG+m@@w}{kt=`(%*Tu_Zm4ZV_8K695FlZ@4;s6lF>~nQyH$3MqUEJHYdK3G4S`_iz zKbTgDUrzV)Y4NJO_m8p@Na2m7$51v9X@1g@uW!37Sl%3I~I*q_VxE zqhDe{WNLA7v0`FQZhmozLP~yKs-dN&p{}8kuA!-dfti(wiIs_wg06vufx+a)cu{{t zGcyANxOqk(oANn08FVd`fzDubPRz+s@XgOv$S+bz%_$C5 Date: Mon, 25 Apr 2016 18:05:02 -0700 Subject: [PATCH 14/23] fixed bugs --- db/development.sqlite3 | Bin 24576 -> 32768 bytes ...60422212851_add_column_people_and_tasks.rb | 2 +- log/development.log | 84 ++++++++++++++++++ 3 files changed, 85 insertions(+), 1 deletion(-) diff --git a/db/development.sqlite3 b/db/development.sqlite3 index ac7e69dba6eee8131ca00240a573b62fe829eeef..1dbf28561c47c32d56de2fb904035a6f21f5e4e1 100644 GIT binary patch literal 32768 zcmeHP&2QVt6{jSBh)HavA3+*qlbv6~f)JN>(l6HrQ zByyfPZ{Ba-*GP}^=!01|bWq)IHLMUx+(|B%<8C0taonfyD#ELC48zG#=K?-+iSvG^ zpK`)KkByCe!3`gO&Xs;rDjt76_KOoQ`u#a;X9zF^7y=9dh5$o=A;1t|2z*r$_=FTj zPYXis$EQMT*>hT!>jg`p6>KbdZV(39>!F+Twdz6*EmYs1t)Yo5c>-OUaP0{+Gq+Hi zuFa!|^E3CW^NZ+SZ4p%;FFcr;gZuB-<`&T019&~2oxOr4LO1lB3AAmsR@ST*G}unC z(sDOL*Ka19SNz7N=g`)rAhg1*pa;>hm#i?=-g2z4-D<;G=r)`r^Q}$V8sF86zUj0A zU`T~>o1xQMbz0@U>EY4SXU^n4aU;w&9UsOOzmKHxi5p)Dm8R7=6ezDFU-{wC$mz?M zbBmE2!G|6!(v||}!!4(|;$$v|Q<7zfm*{A(z@24Su$`y+^rIM?tb$~(zgqfK-W$!2 zp1yW9w|CWT+RjH?O&73U3Rc#fhPBjiS6dcU@1U!p&<6kU+{_1$YhYftYTri_{cfK? z59ZKBS0_{rw?Un$S(Uxq=;^C4kkNSRUpj((YWfFv-ZABUJ1dWYdo7ec<4XT3{T)8o z!4O~wFa#I^3;~7!Lx3T`5MT%}1Q-Gg0fxXEjlju5zAR#*Vp$YLBI*h`nNPG}*}&q- zT&IN?A{JFqI|ecpN`I#7|G&WpI~W2C0fqoWfFZyTUzl z@f6PqlNYX6tK37++C|@UZO2E`P?QqvxZxVAw_K-b2bS0HgAmz%(;$)QKr_@cJBa;_6U_b4n&_|D)6~Aet*{$Zv+LPV` z=-rz}#6El|Wyj#T3l}0WV?GBAZd(o4+f50m>mZ##Fe0icE2boYfOO41@6!87lkwudvUGL3-Ql4o%R~91C7SD>nhKE<4iPwIcswfI0f${;DnLO0u}`#QMHhDlTdx>hLe~C zSBNI-I4f*|VkLK{tg=RpfOUf`tJC$+NOmk0u7AWcx7 z$UJv0=5o{WJapf09JXUZWccPTWeDw#DP>pUxr+wZwzg)7ZhQU?6c)`iQPXi(*OvWO zfR?S54YX^uY+~q!fDJ)Zkcdr1G8LnzrNsx9awWwO)r8aDq!d7z#-_c@RrBv0BlIq+#O+7h!Hm1lWCR!$HeXsk>3Pg7Cf{u7S5iHY6&`Q5;PR zCF!Q3RuoNFamu@6Q!-3RtjMYgb5-!a!*kb_2(>#FI6>QOHk}rV@}0n4_T1)baH~gK zw>**xI#r=jP)Y?zV5pl|sTf4Ux{_a<R zB@@Fu%N0;8L&-oTf|PoNhDn{|KYFLwjwq16y)2*rT9CRK0?`pRU?#vCG8QOC-d#3{ zSb>QU)dSt=qU;q>u^mueA)dss4g4Ksk&;PdQxP-%F2zs<9QWtCi?aPTjVGsGmc&w! ziJ>Xf&*Dx@m8la-W+SQIA&O))Ni-nz!MtEi*PQdkcJ_MoA-rnhGS~1LjsW49&YV^!{O(wtEz+J`w_Tv>s^vD5OS`@(%YfxU z3ZT&WRH)mkCvFa-Vw5jd7FoXN#oUGU$`6@*-N zmxmj4{m+kG=SsgVxusL%pN;=;{N1t7$9@V;>|h8m1Q-Gg0fqoWfFZyTUJ^&%Uq@1&{qHGovHiW$5dU-}JYjAgEfed(KMO`v#T%AfBi*>l9f_ zm{R6PjwEVa<_A@p=~6i8GeNmKd?-=dcgRo#l^I`xGBb1-QQJ3&q)%a`PAT(+LyDTH z4$(wa*A8Z)i*h&r5>Zok$a-RYU6h&JU{O;yh)SYprHew>|KEnP{nF1$Z;k(k)&FM- z89OE*>a701$_*~4N>p>l&v3B%|2|I!u=;;i|DSp4sb^e+;@m_Sh*O9-fJGEm|DSp2 zh}HkI`hQmc&+7li_?r>;JK)8hN_@ zA0B(bmBR7=jQ?ufgj04f1Q-Gg0fqoWfFZyTUuKMrY*mv%w+& delta 255 zcmV(D(L8&Tv_5DJ4nPez01IFo2>>M}Ba?PKTa!#ZY7`HM02F}= z1_=O98zVnKK>b98eo4FCWD0}mAd548_z4;8Z!5C;zeQUjAgT_=-1 FU&0bsL&X39 diff --git a/db/migrate/20160422212851_add_column_people_and_tasks.rb b/db/migrate/20160422212851_add_column_people_and_tasks.rb index e799c4331..39b9c7e69 100644 --- a/db/migrate/20160422212851_add_column_people_and_tasks.rb +++ b/db/migrate/20160422212851_add_column_people_and_tasks.rb @@ -1,6 +1,6 @@ class AddColumnPeopleAndTasks < ActiveRecord::Migration def change - add_column :rails_task_lists, :person_id, :interger do |t| + add_column :rails_task_lists, :person_id, :integer do |t| end end end diff --git a/log/development.log b/log/development.log index 9b1c44bc6..81ab9d67a 100644 --- a/log/development.log +++ b/log/development.log @@ -95329,3 +95329,87 @@ Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bd 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", 3]] RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? [["person_id", 3]] + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.2ms) begin transaction + SQL (0.9ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "The First Task"], ["description", "Get up and dress"], ["completion_status", "almost done"], ["completed_at", "1983-05-06 02:45:35 -0700"], ["created_at", "2016-04-26 01:01:10.153621"], ["updated_at", "2016-04-26 01:01:10.153621"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Brunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:01:10.158845"], ["updated_at", "2016-04-26 01:01:10.158845"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", "With Family"], ["completion_status", "almost done"], ["completed_at", "1970-12-14 12:11:30 -0800"], ["created_at", "2016-04-26 01:01:10.161026"], ["updated_at", "2016-04-26 01:01:10.161026"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:01:10.162970"], ["updated_at", "2016-04-26 01:01:10.162970"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", "with friends"], ["completion_status", "almost done"], ["completed_at", "1996-07-17 17:30:53 -0700"], ["created_at", "2016-04-26 01:01:10.164974"], ["updated_at", "2016-04-26 01:01:10.164974"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", " Or not"], ["completion_status", "almost done"], ["completed_at", "2004-08-28 21:25:01 -0700"], ["created_at", "2016-04-26 01:01:10.166986"], ["updated_at", "2016-04-26 01:01:10.166986"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", "In neighbors back yard"], ["completed_at", "1989-09-25 20:53:59 -0700"], ["created_at", "2016-04-26 01:01:10.169189"], ["updated_at", "2016-04-26 01:01:10.169189"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Call Mom"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:01:10.171149"], ["updated_at", "2016-04-26 01:01:10.171149"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "She worries, you know"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:01:10.172972"], ["updated_at", "2016-04-26 01:01:10.172972"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Nap"], ["description", "Yesss!"], ["completion_status", "almost done"], ["completed_at", "2014-02-13 01:48:17 -0800"], ["created_at", "2016-04-26 01:01:10.174808"], ["updated_at", "2016-04-26 01:01:10.174808"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Honoure Afflect"], ["description", ""], ["created_at", "2016-04-26 01:01:10.182170"], ["updated_at", "2016-04-26 01:01:10.182170"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "William Adolphus"], ["description", ""], ["created_at", "2016-04-26 01:01:10.184372"], ["updated_at", "2016-04-26 01:01:10.184372"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Edith Teisilian Ethelena"], ["description", ""], ["created_at", "2016-04-26 01:01:10.186243"], ["updated_at", "2016-04-26 01:01:10.186243"]] +  (0.5ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + 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.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "The First Task"], ["description", "Get up and dress"], ["completion_status", "almost done"], ["completed_at", "1991-01-20 19:15:20 -0800"], ["created_at", "2016-04-26 01:04:42.278497"], ["updated_at", "2016-04-26 01:04:42.278497"]] +  (1.4ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Brunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:04:42.283388"], ["updated_at", "2016-04-26 01:04:42.283388"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", "With Family"], ["completion_status", "almost done"], ["completed_at", "1988-11-10 16:45:33 -0800"], ["created_at", "2016-04-26 01:04:42.285367"], ["updated_at", "2016-04-26 01:04:42.285367"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:04:42.287123"], ["updated_at", "2016-04-26 01:04:42.287123"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", "with friends"], ["completion_status", "almost done"], ["completed_at", "1991-04-11 12:03:47 -0700"], ["created_at", "2016-04-26 01:04:42.288853"], ["updated_at", "2016-04-26 01:04:42.288853"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", " Or not"], ["completion_status", "almost done"], ["completed_at", "1978-10-18 11:49:37 -0700"], ["created_at", "2016-04-26 01:04:42.291487"], ["updated_at", "2016-04-26 01:04:42.291487"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", "In neighbors back yard"], ["completed_at", "1972-12-28 21:54:04 -0800"], ["created_at", "2016-04-26 01:04:42.293543"], ["updated_at", "2016-04-26 01:04:42.293543"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Call Mom"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:04:42.295404"], ["updated_at", "2016-04-26 01:04:42.295404"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "She worries, you know"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:04:42.297246"], ["updated_at", "2016-04-26 01:04:42.297246"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Nap"], ["description", "Yesss!"], ["completion_status", "almost done"], ["completed_at", "1974-12-20 19:59:08 -0800"], ["created_at", "2016-04-26 01:04:42.299011"], ["updated_at", "2016-04-26 01:04:42.299011"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Honoure Afflect"], ["description", ""], ["created_at", "2016-04-26 01:04:42.306441"], ["updated_at", "2016-04-26 01:04:42.306441"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "William Adolphus"], ["description", ""], ["created_at", "2016-04-26 01:04:42.308698"], ["updated_at", "2016-04-26 01:04:42.308698"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Edith Teisilian Ethelena"], ["description", ""], ["created_at", "2016-04-26 01:04:42.310489"], ["updated_at", "2016-04-26 01:04:42.310489"]] +  (0.5ms) commit transaction From d8f701420aee29e0a32380e5053c68a1a1de3857 Mon Sep 17 00:00:00 2001 From: Sarah Date: Mon, 25 Apr 2016 20:57:49 -0700 Subject: [PATCH 15/23] still working on the css --- app/assets/images/type.jpg | Bin 0 -> 98011 bytes app/assets/stylesheets/application.css | 15 +++- app/views/tasklist/index.html.erb | 2 - db/development.sqlite3 | Bin 32768 -> 24576 bytes log/development.log | 100 +++++++++++++++++++++++++ 5 files changed, 111 insertions(+), 6 deletions(-) create mode 100644 app/assets/images/type.jpg diff --git a/app/assets/images/type.jpg b/app/assets/images/type.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98e90f7ccec02129832a5dd61ff0d42f0849bbbc GIT binary patch literal 98011 zcmbTdcT`hp)IJ(S#m?x64K)@NrK(6#N-U!Y2q+2&2pL61K!|`4Dao-6VxcIAC@m@_ z0)~vV2my|YfYc~0LV$<}5n~7tLfXm6?`6KbzPr}_>#kqcViCy6Id9qf+0TCVepO#p z-!OmJAGJG*Q3EdnH3JMr#lal@@2}ba{NKK2Z}NZp-T(cb>K$hJ0yRX%>VsJtEADB66>gsdms?VD@cP_Y^1U|>i zT|RHc=G_P9|9SG9#+Hzkdu~2@v0&?=H}ADvzD($toDaRVaM7yOYu2vYwq19}PQAUR zX66?A_8Z>yc5n|B1a5clX}?MsP?AHI)%>H*`|L?r| zFiX_cz~-qh$KWu^m7jmFSl~X=*nC*CQ!GS7y7VqwK=Hhu48k9YrYH6_sxWvgZ>ng~ zo~wc1wFzNg>}vk_9IwIBD}+{0$)W77k+ryjf~sr76VFSEbWuyh2Ih&WJ5C(6#quVLw(M$r zXgj(S^_jm?g{hH4;wr_7y%}G$?3W|DN{T4SJ|V?wx#*e-V^fK`z9{ouqrzZWh@Sbu zM2(F#0#7nvc5&x8saO^{3uixarIww$8jBy2S!*M1{%LJm_I=I91_HV5>0Q zvJ)Hcq0q~Hj@}LJxO=sDx~x95J(|e(>MLDes8C_#31Oj>4BUVc*EF9ta3qp1-FnRQ zQx<(BP$rNj80_~`S8!3fNP7B;^c!#LRcoac7#PHowH*>B(c!#<#0vSJk=b0j3gdZ8 zwq`tF4w|Xx&=8La4lW9q85BBr^!nFi2u0ibzcxUP2wE0Qz>lC>3kfsuHWg-F@TeHa zn|}TwC%{ucH@;9->h)wv+{SDwvh&96j+cg#QWfUc`}{jRoPeB@a=^T8Od*Z_H>_q-iN};oOn}G%xOFBN$gc23(u7C@2pq6(Wu?k~N z`uWH2lx`C#cEWViyM6DFLPH)0LHA~S`axl-Fth{9Kb^&4C$J(Evg&$YvOssE^c9ib zi6~CsHLx^{U1bfFCOs8kb}mtKpCtdzmK)2T^0If=Z!-$%+>(4_QT!Y10M6d=zgsqA z)+TCf(2yy2Qgws(hpRBSJN}JaYK`ep4K`)s`8=Iv<=PLAy>HWBE*e*1Hgc6Qs7{z` zOt)d#QZ5hqeq)90G}Z`Gx}NMUl}3?aUQhm|Y283b4g_5Oo`KM z>3jO)TbMKo436)-e%XAk5E4(;n@%P|nxZj2x>r4jS>r)5cVfay+a$Ey*L$LJ8e3om z>GeKMUL*ID-><9ojrUE|kV!^w;tAG?#xA;$lNqpE6~=&VHj<=4moUM-CyL`vhF-eZ ztN^=LFvBus!T36PdayjoxVa(G?F2g_l{v^wn{H0%5~(nAhB?49(CarcGrPoUy0y@{ zqgvZXbo2WH%H33$-8)|1&K@BBG;w)MUhStOeUBaB=!LLkDvY@EllFD|B(@mRY>#cX zKqWY*oru^MC6}oORVW_)z4R;a)f*~IW(Z%t?$84MsjhAIDony0?IRks8bc}!d+!N# zyZ7r!!>Bro`idrrknI3DySUu{ZH01P$G!ni8!|Hi<1Y@bo24*CO+oMnZkCFPTX;AlKR;klR zj1fBo3hT&O3kT)Gf*VF1UdkD#@^kko*dF~!(>!!eHV3Q z4ZgvP(CF~uTj%G0i=L6QEy>ZmB+msD(-e1a!IYwXqpZ{fV{-+Cc(|5{PhpRMp`fWb z*SPS*H>h6Q!}yyNeB%Vbk$}7!rq2D$i%r^QXm@rNP2{M;IJ*=r*=SRKX4ooJum7LP zF=fCii&HX)@*%grLNYDeVya!q67T(IdDqFzYoBtTW7Bxi(EIgk?mu3i2$pl6{q4os z+|MUAf1I-$?8o6o=W$Bs8tSEoQ~QGvh%Vc!w%lz)L7AY94?YdTY{rOlx9U=ynM!}V zcTLaZL@J;*J6w9|9KDbfR z)J)MCp2mN6S99o_7;CJ+D+wq=`gxw&8h~e?VLF{%b1*sTM>j*=hQ`Fr?ygOam20FW z8P{=R>&vYFZ2IH@?D-oS2kkWu*xX9YnrG?X5Q35}8yQm##mMg}5W%0m2(`fF?{sy4 zBddXwBwN|AsorMJvIb~varg%=ZUmj5%d?t?mudo3 z*q*Lw!4U;3T3AD}&&!GK3}k80*F`CkTFG&d)Gc?N4b^IK$h_FDnJK6++2T?PH0<$f zN%5NobGxla?^miYPbm42e1P9a>#x$6rau+Kya;HmTWhJ@=!96u~C*vA-W zj?GOWI7!@4dUxE*qRO2%t}Dy!e1sPZqrXn}?&VLblM=oo1M7N#b;p(a)nxIUOT7Ki zw=In_1eY3}V{2Wfb%5hcl_4gLy!4v+i5`r%eQ=07!M8t(97(tKGc};c#mW^^Q&VCE zl1O>g&=hUg8+45lED?0{Sw`3dr#GIwBKWtOAPKrCL?e;Fr(FiZFFMA)(WPWo`rs)B zu$Sy3BwAqZYlp{Z>QZ z0-GB4cw17Qv1?;OKk3~6O9tPA+M~nKXRpoQZUXl-R&bTR_@WkS(LB3VWHQt2SGe8EJyqD#n~I}7=(zIfs?mT=9Y`MB9ep#!?lSW z?w%gHGI=D~G2;%~5}YUdHI%>7q*W1R{UCy9LmEs*+LBGhdC8Fe<8 zGQ;_#Asc@4+M{-9%$~|Cj^75b0V)ius>P3m74fVYDvXz@!@fG>#H`CR9V_4g9Dj;; zePLk0BSv~!S{kLFe3A5g<5OV!2^NmP6%AAvJ*75fCQ9mzYp>N#?lMOdzxr5cPi^IE zZF+CoP-c!K@cUx#HWkK5UWV5psW8J+4SX1Qgh#DrjjIZCl_Th_{h9QtyQAYaoS{59 zp_^_E@3!A=0iXjoZSBvu%9QFq_~^awxIYhX=ccu$IJ`}2wHQXNf{IMgH4^8nQq3f~ zVdKQ>zV+@az$z4U2h}7=!`#<%)C~*EvfEFO!a4%cwr_8iM+9J{tFp{G@%&nfR^%{! zf@e5unJSFyVsoo-;Ien=rMk)o;aijbjXBi0ePBeOxO6X^pu)Ti_sUjbcwwWntQ}@Nq-^TmL7$tx1-1(`NB!m9ali)7 zo~usp8@6)K=2I5b>Rk_5{2;;i{W@_C4Sp)}KH{f*5&Worb=GK`DWxw6Nl}vYFW#%O z^FF_$9N@v~kGo-*;Y? zo^&VX$a&^@XphLYJ7`!5U_Sq|pA53Ed)$AhHRbSL1DlCtoG~@;N_xOpKBL+*nf(Qg z*mE_Lyu&W4p57Lj_Ubja94h0cS_-ZU0c}aYkiN2`|63?zpKla*1*NdltpEb^UXo1SevWk6Ht(qu9^SqH*8$Y`syV zA9pn86`5gY?B_Ww0AZQdPmz0nU?qm+%kBw{oik;XFf;f~d-o0r_3Ky%4 zy4gSP7g;h1QJhDnpZBaL8I(CV(Z}}_7I|c}d73X)FijP9AnaJNf-j9nI=rYe__8S2P8MV?u+fp&{SI1-;L(sU=hqR{q;b7Y2p1A^b1}j7~kC% zQ{m_4y4&SGS)fxuGZtyyEG5Cq+`MRHI0KROkmRFFyPO6>$CbQ zo&j&lg4AwFZclizl% zpmBnZEbbiZD7R^;<}DVT>-GZ9nVtPOa^Cz_;}%IRz7d&5%W`KNyiWz@aGdMf<@3@9 zOs96p0?Ss1d()IcnSUoNE?6~3aC=K_H!1;Eh4AtM4Bv7@)It0ZHjECOaf4Lo6n(vm z5HCQdR2T^S*kpEu`uuXgKVB{vpCn(_AC8Aw^hb|{aL*)fZ+EP6XN^9sSSrfCbr+K&}h1{u)p5s#Q!=R6B9-8ROEo6r5) zES%;fHS)p^?117XQ%)jPp{XwM`-{AStc^vTEaDsUi!4UJ#mCUXacp=RmD(vM?d)lBwDRzraR^%L3j{ z6=vwmSr*Lp&^6*s*ADdbgoLUr=Cvl}!y%?0xDn z#ce=HheQ@ihxb0}U1+!<&mf(aM zZ9K1|_icW8{I-!MElx|zv<<0B`Ly;A?|9qi_%jUUe!eGtDm@y+`5s)Fez;;2vj5rF zzF(+bshi>z4moNy*pMkW>UkA2s@%@_rlkB>D-I<74a*FNeljA5Sf<)hc9X}(GI zjp%tj#=uldg~aDr+R;?@c#b59!7Z`bT&s*Ps~+#HCKeoe4eJeFo?&c+r~0({1U_GQ z)?4^H?E72B2J?FP2DXIE34;8l!T|n3WpKOxwB5J5V9RHaIvQ!}*h1)A90X>m47@&i zy&Eu?&6c);j=XMtWOo7@W$boo;%hWLq)6Zg*VU$1q>Yk&x#VV8OYm31m0E0<7FpOE zer_X3{0I-dqSw1)i4&{8E3*ZIe^k8%38)P*-J6G3tzMKvSi8@INFQbbSrn=FyA7N4UF{Q7XjRX%F^^@Xv#shmg2(lujBe$ zv^U8I=H;0=T=&~}_MyRjukoh!1gx_>c=pluor-e<1?PI6^qA_T^$!`hI?P*L)>j%h zxy zME>V!5^m8*xbbbu5~F9;DvbJ1+#cmmAa%VFjiLV-!dSFCXno&&uMKDoWz2iA$@`jhMH&O| zn+)Bj7&Y>~!3#>ai1P1)PrAn#*Q(hsr*UTJ=i5cbyrju|*?lMpcaIJm!@h(?&1XEW zQ#~vCxyF440)iP<;cLy1jlN~7Fkf3-l87^Y2?iI?UtE8Q8-y2|^ozXev~N(5k5lE$ zOg%#Zqe|ELpOX!X-W!yIy4>r{PxPLz1V}xc4dARJVXTC(%S#`TO^7eB2ex; zbgNQ*R47D`Y+atZiYlu7A$WrOo3+f}Fz@nyr)P{nkFT6M^A_My8&Bh| zq|p(H=&g85)x`>nbFtpsdJxvoGm@eY1GWcNhe1RT_cFU4EbMze4vfe;PKE>y`I)=8 zWR#?YrbK%)pz4`$`}Qd}JN?Va9UK{YQ7iW5-%N(_Cmc)q$Zg|*!;Y=N+-eR;(fD$S zJj%x*c#jQ%GF}3*_U7DG^=XfoQZxE&?C>8ry3(P8mOtPLV-@Di7#jJ?pHZAfy2e*w z<_4R&`7^3IgW#fP{584(NoiM6tf(>1u zS6ot>K~zj78VSN8b!A^l59dl+a9@OMPDx2JpZ?z%95q8Q&#Up2r^PMsCdn4^HvB zrw3*fg6_31FuN087vkco$hE-ug1cs7?V1)dlw3R;r~ErW;iWFx^8^V~S}Obo(@zEd ztyv?9V{Dj}rTM3m!>W3N;Iv=5J3ag8*2R7qm&7w&xWjE@D3&)-=xG@|Q0Cyw6eG)b_ELKvyKOr+RV)-qPhG4y zIvnVWt!o6iP}$sIcPkZ!iDJ(Jt*er{z;5kU0zPB?e?jO|VY&n#o!4Cc`+Z~)I^WWB zm3JO7c*rA-w%0SPb7Xh~Z{Ct5$F@w;YHnm_0)z$T%71nLkAD4_uizaKZ2s8M6)8P# zB}~!^ArT&s-JWtoj;B4q=@k}pt5#bB#hYciW&7&jhKs?dA9n^!UX-wPIT#R;G9o}% z4lQ`^%OZ#}N1vp{wCywh5~hERE&sXY<;T2|t$qE$;Cd@G)g!2P{_2Q<-bP?dSVC0K z8JTYqvvCSHEQ{*2uW-@?^fr((J2J@&`ziZHEu~;s5dEFWs(}*D0|;g){YLCYd_zby z#(2f=q&h_Wt>^Z~`lwxU-&w)#aG6?p-5vmGAf+QL=(7=LDA?Q!t1ILyFC1@dP+=tQ zO1zl0B`5ImC)e{F2BZl%zb+EKBqZB*P@#yB1HhO6!WyJhYff2PqFDj2`^tZm^GDOf zm8;x?dIz~W$xP80_4I}QLs~Z890r&Xc>`>-+i}Vw!S13OnUIF)`{$f0Q>%Pd8`?$@ zCE|R_ea<9aEu6hH8WEw`yC(@l(RuKIG8lJ95a};nx$uP9?NI`@uIJ@c)-rn_VO{|G zLe|;92n{7=CXLQVah`KFs}oz$b}k^9NRoX-MISdBW>O1QkD|gU4vQ-G-Ft|W+GREZ zXq{~IrWz4%VNMXSlSEvtS1!lHK|JymCPI1c;o)nqa-+wGIY>6QBbz}uGRjcYli5*R zZ}=O$Co|h^r5?EkW=+Yv_fU4}aw)A~8R=16{hx$5=!+<-hL!_B@iOIX64!a z?|Y2@wEq%L^E_B#t?vNCmj)zTOUu$B-qO?Oc{}O}+h5jrIf%D01EwqJpON>IY4wX) z(&JX{KhB~&bcG|aNfsxk3moXiuw?gx++at>M0xwFBq= zmHRKF1R^#NyE-z4I|xZN#Y$rb^v!i<^--A4?po0$D=z9lpcKT_U1`~esFOyEeC(kY38cd9cUx20NANg zzYF%G84J)o-KIq6JsYsLDZ#i~BA2wLe^eOmU4n-Fq-8q0|V8PYRyBki1B&C9=P3eN{|J}05FQ5Vk zMr;KLpN=0TO$qSAxpShxO%0?iMQ()efV=Slxc3yr6QYYN6fpf=>+^@A8Wm>R4+i$I z<#q1yw9MRXE%7mOL>Vk)Oj`-G%p%KgfdJ*gJ#^ytM7h~U(P6*ZV$M~SmJfz!IV;%fqFueX4;lH zoWnutNt0uVK-J0jyZm(fm+}jQ8ZI9t745Ve@QM%=!y}C0jt{U{a^{s`(-o`<$mFe( zd{mhBqJKXo=Fchzhb7AEv|~NtBe$AIF))G!6AoP(=Jg!IISSiY%@> zR2lx$#*a=xmXae@?06tvRP7flL?LQa!uPse+QeW5mpTjXyIw^6LujOop|&e~iT^gq z081lcTWo+!c4R4YJtLft(7l1!Xl+g0#tc6EW9QjFXj8}_D66&|F4@d#ZTb0@Huvr> z)*w2AbBT%&Bd?|yA&g*dm48vg*^8kN;KOP$9cu@_zXf==*U-QHT_Db!ZX6{7m zk{;JR@k{s&K1!|?LoNMg4`DrE)Rvcus`uD+cSpbj4Le`8 zWQ7@dhnEcY^y&!U)Qn$Cd(FSL?Mz{hB2iG%(8NgkgTsj2?d2WqJKZueKYUs! zh4j|#vQPFnrQn2(B{`!t5rM@|j>YW|GJjr5O$zu1;MNKy`R6XJRD+yF(r#AijwPp! zp)_EcxaK5%?DkHS)k(pl6+4BsAHzJ`JZCBfpYRL*ddDdNAv2md1cqF`81r$75z%)9 zjZr|^-LEF>+fONqrWAlgOuv?yH|hhmgU@8s*$A&AnbaqP>VSW^Yu8q|bo0X{*YsKz z{tW_ADGDM4jSbwYd;Qho(+@dJh{E$EJH*hR5N6!zB6(EwDXV|A)rG+d4)h82D|cad zA@|^Eu>kczc>#a+&fWnW^YZS{$0wI_E!u7b`%HT(}62%570-qEYt+>@(cS#6Vi6R<1 zwt2Jr)y3?QF`0xVn|Z;P(BJp_*F^bqNNEVRy7d{BFgPG0aS2m_^|;H{cyu}U7Uhrf zErVy1uah0ktina6_s(@fGa|U7X5jhPPmN*5lOXuwc(fS2A|f#7m{fPetxqkwcdcA= zzV3wv8F%#C?62^s!r#C7boGrfmo^%DN4x5xYkYzLCW>FAx(A%9oe3DMB5$C9Bx=fB z0DKe3EEkXb4b~S7nF|s!{V`b{SB}E8c5S1UahzvTKW|ovLG(1n08}1!ZnNDy*H?rT z9(SV|{jRUcXmQ(zQj(}=*~X^tAO0(YS<*0}(91LTpZOsAjh$`T|EdX>I=>=h#J*k5 zK%*hI!;g*Dkc1%EveK37q;@Ys_(m)yvTCg=-gb7nJX%Xe(jS)w;N@GUHbOLVFy~(I zxZwAYc7FBS#6B$)NpV=R3#2dE`r@jF`fCbH%Qcv(D+1bYpiG>%I6q}8n~~79_oa@V zq$1+=H0~o~^w{*o?vjj(rXyyr`+_WCCw!wY>VsF9zHtl68kS<&gSoDYT+QHCDiKW3 zKGS&7%5ijNM1gXLgiVsrh3P(jj&MrHIuW@$EBASgV4X9`5>KTPL_(Ofd|hMq{YaS> z#KQ8{pN?G_j%uOnqo4$xSIwuBQg6sIfLF+sCdVG!S#lUEBcixied?;tUR_a5hpd<1 z>GU(sGG;%VedBz;>w!KMroQs}Fjo%g#e}?ViM&p@_@7jR=zVhaO_jL^gY?D=Ls>l!EJ*?zyFP+8?~a>x z3qnKi++lSQYdzq;{r_gZQM8Q46!!lHi7lQoGUmQECP=4-+aQk+L7O(;Sw;?OVG2o6 zz6fQKHjm+YcinW< zEnEhO0xW)#?~rQgeIggZ;tIj2Q*C*=@9uZ(HgUUu3u73N-UMet0ya7x|kuSEqMK7!-1r*qB^>k?Wd zx8C4*6GDF5Wu1e!O(0llF$Q{5_I1U)GDBJ<&mxsO=@E9@wxb=M9yQ5amhh);wB_YX zWqz03qs=9*wQqqNS{J-Dm(_ZM@)`@x4d7|ui1}cGg<&> zI5*~99=Y7>-O%D*0#< zbXXa9;^^uT?F^y#Rq_ z?ixBfF7uLx{a3GYJ#+a7%kU-&Edi(*wQkKPbOQ%sqS2DViegFW&oUGq`k0+zxDM+0 zrFeYeMu)wZlo_Ukd_Kh88vN!L@cK3nXO7LbCOP4rKHO5=jZX1EchnoD1vOPK zT6`3~hg=Ro9k0~4%74+6*LJLV96T@Mhl1&a{OAf?u6Um@atg3CifFn)Z@6LMS)_;| zg}}y9o}+*NLwRDN!sI|rEGaSH?nutmdt)RBP!XqqO0{;fq!Y*MEB^<3t+JmhFcu>w zLZ?4oxfzNO*r*?g!*$Y!j|e1R^HvFSJn=zDyjlFvL2NyElsry);;`?$5C*be^8@{O zWw=@>_&!56o3iFye|EG#riDHFsgVu=zPv9GZ+z0bs280ddBQ1@-olmc7%$rzHMnBgsqNsJ==IDv2K48x?54j=h7!^UBI%R+ z5vvv47cXn-l3AsSq@GqDRSDFh9#c2BMQbP-voeTHZR(o08#p7=0$I3(H%(tFWlh5G zar3Nf`gjk5jq;QKdK_A`NaL>!|%}z$)Ixn=C zRu;*`PNBhXyva#9>z zcIiQ30IHF8y0q$ZKBIzdWl8s}r}EQJr#*5s%`828-GUbLwqGRx*Ese`O3~;C+NK)B-IN)>7CH?_V;vyko=1@)5=P z+*@7dtv0TNEJzL%qK&C9-Z&erCgO}GAjbh^{48yw?lmVFNh~(FU##i&mmS`&Tvv`5 z9_v~_YaZW3SK!P=%00M-bYEGWUxfDPSfaJw)rA6z(MvEEqI z;J7ClPem4=S!8ow-*-_Pa}ft}!eLuQPN&!Q|M?472~dKMnuawkeH-h|B!_cQ5(>wj z%C^1Nv+c;hrj!;JE)VEHZI-?H^k~k@sPdQY#F|<+{#Biw%w!V~0@`!_!kLf+ED;er z5q5q>RnuQeV~i?VYhkLi)7P%sYu+=Dw>}}A95HQk>yt;GOhwCS8j;#O2xXS#3X0Q| zR&jc~aYhrPh>VXDqfV#aop&1NCW+Uhr;n@+cME^09}`~!x(tt;nR-V`kW?Vmks*LF z8`Ehvq*Hc%Zg%(z)SZ3MgSKkSJR+-{3`DuVwk_aGYzLNo@$H;K;HbhD*uQw*5o|8c<}!@FWNiu`a}~ae0hxT_uT|cE0GZuuu4zXo%8S zYx7uWoVjVBoIE4^s5EhZHoyDQQl^rNGT78k+JTij{raz`jIIH9$g&*NM_dqtf4Z}n zUS32!`^HTeg#U4&l{P-KnJRKB#b4@ab5$QXE z@DF^**k_pVwjTtrF`;9!sbvHugSZrtM+0^tcGWGkV|xF5lBI>D41T*zKI3e&Z7iLFJvc^e90J>R;xT1M#WO^Qg+vlr4I^W6p{Y125K=>flze+^na zJfH^%icRY%s&#+S-#WmyfqD6)z%%&~<8FPu@@qoZ3-L**cevvM6~;m!B|awx2IiPc zpAM0QY*6x2MiQSa`>q}{AS*id^pegV0s03MY&w_Mk?HFe4jQ}Il!h#>0}Y;cZtZLM zn((5ml);#0VcF~1BBsJE(C;Iz%(i}UH?-RTIk^4aT7r!Cyss_?rTEf+mP9y&ClmGl z<-AUD;{KYk)f859MM-DbQ^M~x-iYn6u~uL!v7-FDp|1-e1HI)g@__`w`xWkt$3>0H z%_?S2IM@6bG5)YKM)8)k@@e#sXuX| zNg|=Z+w<2gHfn7+kGv4Mpv<$`6mzo2G->tqJLByNL0Z}$oVpD(ZrZs#89ZtD@0~RS z`17|4W!tO-HO2tcd{~6q)Si3xn;vZRWH8#>-aq#d$JJk_`Yl|YA?X-!G`9od2P6v$ z5m1V(wkiy`hrhMp)*!ypd*3KG(bbbj;-ea4FHF{t7GUpMIs2JssW5*!V&9RqKO+vq zi`(>-&b_7&vWy)*2g4)n#Y|N>7GR=YjW1w zHSBr3QzzeG+i_RE%ZJbLeYZo4_UXJT@)TwE`=2_Ma&k20QD_MvFjR#pg#{_!>AfwD z?t=!Mltuj@Z)-6~qFTM?=j2R=B8L;kDp7u>VvrjkpxC`x8#RH$SK?}Ti z8w-W5F}%ZODd8Km?xqPI^~AWY-S4~BHWgsi8vquTED)<#%{hKnN0#+z^;2 zg5KBlCx>Q^drwJB3u3@^qVV$enQv%GdImjMAAx2? z=A<}XZo1s@iw1c?_^Zpj-~B$qnpAR)aXjR@z&&koSsLLPbPr~o4=CIfAM65~e`3nX z-f-%^2j=Z(E5;*$Qk6N3Ow%Iw)$lGCSGa{f$)G!1$~M6%C{0NkiM#3w?^XoR$Y#(?UpcyWXo1%;CTBdjN5PEZ=T|m0 z;dB|l)a;SQQQn>4YBG*8RRoUPs3~BZ9)dA@Yw;|%f2}i|LlVx^Qk(;bkKvsc+%6Hu zhsOY^U9{d;m-y1b(cB?l4#PjTZD-bG)2m?Lzc8=rBLFp<%{L26)^1HESQU=DrUb?U zvMmKCE+#)9Nf_IBr7^B0Y zjo_3H7zJ*lVV9;{T>d7?Y@$?&CSazxrE=!5k1q$jWg&rTj`Qp4}QtPLpjK zN$k-+v%V0l#t$Cf`7-h*K7l5wrBJ4(^XJVCdFun@%_F)b-$1L9y&8mmS{=NVLT7Z5?DN zG;+>f?!E2j(Zkt!@HYtb>1{rldm)%Lcm>zSfq|qwU9{{#l7a7rnQyb%ur2NQE6i~{ z!Rgrp1-m)0`1^yOY=;4ViA2an-U}}cCj0_xyX9Hpf!>C0eAQZr*eMn`ZpFQ$F)blJ zRZ4*-in2X6-NBi=aZslnmpQ(^#I{Df0r0zb!(+$1xbmQBJIHOPfRu4S_6)ws90t5l zT&NYlypbT>DFZ1Q8-dof(ETZrlVf(-FyP6-(Q;{N6L zG@k8R{IZr`$erGKm%THk5@sra&*xmeN%}$J4qXAUU0ifBoEE`lp_rA(i{`m_1s@R!PPQz^KmKzgd5VnX$?kWghLl}&jg!Ed zB5|R@JXpbm9|V#}(G)skOWu*6Jyn8=R%24RiR&3r5>rB^07B61qII73izWhp$Xtax zQev0(n+d6O`i6qPbS8#F>4Sh7TjOZkxu$)Au2Qv!-w%J%Yhlig>Dnt!#7Zrc8 zhPLg*Na`U3h87#k#(wIR{ky!fNq|PHFb9=Ox6?26b=!I1$r;586m!X7?)U{1iDr=T zNwS~*FSltX&x*)Ike#mU(L3|^%h}@&J$lx+4J$oDVRLL+RNi(@6$!VREg#o-6mz*} zXrl20?q2q0jg}P03EaKycaAn9F&m7gv~ft%Ufd6N(dK|Pnb~VIgqkd5B2ccWtO~FH z0$rkPoR`v+;h9n=*U?q_fUe-co-oJND5iH1O7cWWhH5)%ftcq!LCSR9WOq zF8t$#mc*__&dJU%C9R8hiGce?m4;H;>Rk|1ZZ7?D>ZJDv=I>e+MyfGt{60Z{2#T-O zl|nvUWtYXy%MkqudZLZt^-@O#uJ?P7mH9W^; zzOVjBScROKtgV?;Z|Hm7$GBU4gk(7KqjYbrcQy3u%5MYEn3EK3t?&3|>Y7s58Q9j5 z^71=_9W2zkXaMJ@6RipGp}g@vH?$&2Vbk>7)&!TP+h-LtX*?vnQ%zSyzNzkl7s=eZ z7O>|AvnG8hBF@ChsraROkqv&4_SGeb+2VO|scw1uZ8}zb{9b9zIpivvD9Jb}$146kk0%HEhsrSEbXrub4=)3L5gve)c+*MI|lvqgO zHKxKG4-|iE*?78yB&>lqz$`KSCiLwoq)DjNLP2W@2H9MY;nr<mR*JJEG@$Zg1C+OXg|6h4s0^7IqePrnxV> zdu_xY3KMEGGNvWd^=JEAedq0G$PiNDi?70UaB1;xiCiu*H5#>AnhUI?6B}0($-hi( zE97^K%e~r%P5+qpAUb$pb1y?l!13g#>@ML*X#@qH$3_CG;3f$J3J*ix0+&A>+k58_ zQacE0SrcQfYntrry>=Q$^<5(o2k>1QJ1$vp-|EK{&30IoX*a8#);H127y*Duo#wlC zr;>jmy^1#A-Q7+r8Xh!shx_RJwf9w}+)6GHUMNrD2R~?i(!(w_+%Dc-(WC8VOXvib zB1->3NNB^4p@L9=OB-sl{j)6DFD&K_kMIn2*4nLOTOD_`y`4m`tr#TxNzxD5>0vN{k z)Mc&+U1<^|OKVl~Wc&kjvzQSS7(5>wy31No4Vi2gv`o$RWb~~3ogBKDWC?+(+b3j9 zMavg5NCe*J$1#el#2_A$G$IdicFZ1tz!B57gKuv?swA2Z@MP0Ui-N>CBTm8$Ar7=+ zQ~vC*wLZ)0dDQ8gVNt-*VBge$ZcJYmtDI-cfJ| z(q`$5c+u5k4?|j@l3u`F*wck0l2h(NE}669$G~`+gJq!7Uz*r%Ze%7VIA?f6wZm=rOX zO<^BYICu@XRk5l14y3)X!wmmi!dlJ^(1sl}V2xve`bgILGdQz>Hbg&(g5z{CWu z-USaZML7BfYiM1{`th%DzYM;v34&XXb=&dIh%aMfKLS^WcQ*Hpb?`Z07vlyTsyob=;0L{kR|!Eb`K1XJ=Tb5X`EHq#-ppG zeyyK65nOR#=uzr8bS2>7*uNmN{>ObZMm^vfLV`5elk|Vz)upN5N%C+BiwY9xozBF! zuZXXW_-R|ev++oz=ajqq$bDH*Xuys>c*Iuv#Y=_ZBmuR`*!b6P*cWFEqZ(p@19})S zI_ay>C3pAr5)8|6f5fOy?A;8Flo7MHPU^;Qe?V8-P4tJMYh`9;+km9~u@}eNfTIM+ z(+96lv%V5PevAy%jmHHTYjAuC!j0VbD$HWUH4U(t2B<~|9L8H;_L81SI)bB)f=QYIx!C~jp%AU<|=anJFg}y5@Y|+6W-^j?2 zA70+z+j)lxGpuq?QXyz=jlxN{3s|wp;o0+?bFQDNi(vHdLn3nqu0xIF9gGA+vG(GY zeKdjr;u=Cjhku(ujWy+LxqDU!ni_~t#Fe%e?&T)hEH+fY3^Qg9bgK z>-^ppRC{01(L0}`cP6H!cB$>3c~K{FPM*K$_&Lic(9ZeUjw$j(GAqguv_hftVzz!M zzw60$e#UQvepI@Aybh(EK?}hTfdE! z4q=x(OkgN9Z2Q`F_Kw)6cD+p9@9Bv!sLl@8 z7{#@2>>nYgcpur>*-Fpkn8Ghkr$R&S_k2l^ov%8wtz-Oy*#(Sw>l;w&ITTTFdzaqf zV1T|n2GBpP3m+Th`(ad=CD9CHNHne7SF1(5=oP?F;GZcYks=R^1~+0!;=NxKFVj5u z&&-nN1wYA>ekG)YXijz?o)4trnc$#uqihU4;;J1IhhnD!ju78pgn&?wjD=N(GJj>! z2%*1vIP{SpH;7NeP@%%A5!FBx-Fcf^LK2GL2xy}TYD+r_1fWR!JMV^IImnxx9{=n+ z?`q>V0}9Keutp~k57NgTRJjpl+_0V7GdiPH7@t?w$@5e1Ycfa1PhuIsku^Wi_TFu6 zdYIupss!NRaT|?3|BAy@-}(p4w>ihgQHM|2yQU^C6MlEYw;&XJl%qavM%Y{2^e0rM zm{TfPDsgpJ=YWTYTL&KP3i3H@G%T7uHYSJV;%B@~Ll1&3$s*8fuy9l5nE3TYW%v7) zLQpWq{c=Jw!Udx+-Ro}m)NR3~pxOt_NgPGSKlZ8lbnq3i8wgPp`-EnJ3!Q-#L?%a4 zhU6}x>T9)$Vbib61DdR{Ji?UPw>|c4cQ_R|CIX#>C_S%t?`!v97>z2qV~sK~%RXmi z!jmh25j4X}=p%rvB8Tf%iEW?+ANqw;4(q5tv7(+v<>LgAl4Skr9K{$5ittuH6j>0! zRL>$=eZ?&=q6Df;YS~y>fBeR(KBz_%jN%}=2xm`o2_;rVxO2+iJ$vvic7?%xuD+H) zeocZN&39k$pndemteVN^%TDicsM~@HQfoopg=K>kw|Hd_x7-*YL*SHa+*G0cFM*d= z(f{G-+XI>2|NlFub55s=bdw}@I*B5w+$xuSt0N(lLWq6J(OhD=U$^%;T`0vWp@>yN zF0))_W!Nc~CA3@@W6Nb0GsD>Z{qFbb=Wp!2_v`t3Js;1<D+`O zUE}1SnIN?vR)-#{u@Pb9n@u26XQ}hm2%m*N>%Xw?nJHlCK}q+Ydq9C0zW^|_oswWN zAf0_sFz}Y@WXY!i?D(AR|j!34!spRf_-}v^+2VHm7dVdQRm70=)7eOnD1(-p1 zjQg}QJ?5c}#^s#9mT+aDGNnhzsCBw8j61>ux<69bIR=+sbm}&0;LE@7|K`fRU{G?4jH=R^oDF~7f&9StN06DugmeHPGe2B&dMnpsYu1d0R*?G z6;eOuCI#s~zOrxxA!K_>?~f=l)ULG78K{&3mbc0@gdpv6?3q!5XTE-UNwT!!?(2dBe?!3JY?SXSB1=dUNo%>DVsvSAQOrQRdaqgObb{iVQdb$ zSWLkQS#vvph$X0}1QBvg<~r^NHG7S4o5A~{?7Fw+=7wIg$8l97{9N(EIr=Y&KchcZ z)b3*lY!Q7p^rt&P_j8O{G6JqtA(($@*_D@x$lee1apwD}kMLh~ONv=DUcn>hWTE849U@PJ}z0znMW8v z#sXjTW*C`_^yX2oe>A|XljB;F{`|h;wc%@o3lQ}#;i`1Ga?cmDmEu?cgAY?Y;1`XN zV`6Qj2ij&9u0Hl+#0fXi9er|f*T6o5H}12#lv$K$UM+@h z<-(W=B^)LyYdcr!md7nPdVY9z%xyz>Rc<77t;{UWBg{LFN>voFi+G66W5m0bfC1*D zz**ckhOFmB<;83p7o~!fhV0K(p{3SxROtx=Xu%^TR6aId0s@}EbDbBw_y6tF#TdXK zv5HeV*WS=aJ+aE@1P5ysA&uKy2tT*noi*k-%L?D7GLy1zA%+P8)zQP3Gr6DKwNfw( z0r?wKw?X~iS3Hw@u@E)D9y|76mZJ`4T6)3a4kNjMQ*3*quZt ztv41l|7)0&X6hNW6{7k}LXN(SODcZamkhmHhLfQSq+c*+>2lNyhmc>}midLm^5FR| z90emd|4i+GrP=5SO?R~HGe>|tUdLYCTy_w%J6kHkKo8voa1wjDNwq$K-01KX_v>BH z%yGLDZFzcK$@wx;;DV7Xf)rbli}4qybN5K{f|FHs z^ghP7#-DCOUxt>qvaNJC=3X9ecyqq!@mPgZoOh0%Q^XwAA4;+iMwecgmi|un`t*^@ z0!gQD+oijpr!D*C%jP}_!QNXw36V|@T=*Q+E=5@pyhL8l_y7C&i7pC|{)5aa8-m_U z@v3blc^>t5=NcHJ6^=JY@~3LqwMz`XO!&EA_vsIG?P!Z+Kio4QtzEG`SNHECQ|2A7 zK=5yb=f^faXsWMK|b-&@$3gWCQvX0{P(96yN(18 zG16ck7@|y{{qNn@Lp^HVtST0HQ5h7Sqp?T}cnV-|1jHg72pINhs>hi1Eqy!gJ=+9T z+|OC}@ny>0j!_khdkuPDlJU<9y^OcbvYZ5v?$KkequYkBb>{GZY_EWg|B5lYf0rmG z%%CMgwq;Rvuh%dy>C0by{$K4{%~xypktP?GEnZxvH@3*UX^NTT_~p{0&vk-ETIK+4 zazX)Rc@AxuLt96X1dOkQl1JNnoR89)$W?iXA%f5D`6cuib-bzH+pGt4X9x{DzY_Ey0!Zvk?KtB@T2|LLSK`$Eoz1^(PRo(27~kSOUb z+9YzlcZlOQWeN~Y-cV+bRaG|On}Su2Il3ki z>(OwApwz9PoHTswV1)*ct6*RVPl=^ErRFbh&OTs_1|b-PBJ}k^v{j>b1ifx>9-RE# z1IztS&GEy6JlBFE8|7R5-{@PS0Jech7mx|_ARpQf%7Y|u)zN)zZ4SDUp#3CPdTFt8 zh`c;7!y60yP4uFP5@y-M!#39ky<>ECDuS$2IE))0DC2;-Q z=h7kVE?xVG=F2pIDOYY0Q>*X(^xG6-%3$AjSB%$oJbHccq&G}~bwTs$o;{OQ{>^85 z{CJrpU~I@cTSNC&7v?}_lG!yLPQHE>xEk5jW(Qg$_pU&HmtyD%bo55|hut~^+}Nyr zVH21D;_3hN=YQ6d&{ZHu14HrsQ#8h57>!@0q0)zaBg^@j!T?# zcSRp}jORSf8R3EbxSzoI^xW8-*-31oqfdWd@i6J~tuG8Kt7^;`O94{vR1xo=XQalz z0nM+LIJ1YpuZUypCW~fFg1HT#I2SI?T{wQ>D@ipC@brY&gCOiZ0Y9LNC$OEzGn|c? zQ6f$O$EsWj;I4AfxYzc>V^kvJ7J~?uN!iq4SfCPu(JSjs_Zo`BO2|cF&G~8)cT=la zvYC!b4kUn{o~Etetj*_CKpumUNHwD>q~w}4PLUk$srnJXQZ+L)^Up8;`!`oZVh&*z z_cTpN`dnfB{@_Q6Y*S8?h+SOO0C_uU8$`KXtF!`n6fO8>OzxiCniKC`bL&F*r8jS% z(C{C|?tYRm7B$`Z?&ceGwyB$>KU`MJO7^3a=!Ku=dGCnnM|++49f4obTkPoI*vjpQ z3G1}^!M)oVzj`-7KAFc58~5GH4LP5Vn+(}&vGhsQI355RdzscgLza@lx*oaiv{wA|jSE;`pT>*1q3Vv8;<_+^9t@>$BB9;f4GIeRT8 z8a>i$RMa@$35mWLvH8%2B8=QO2ih0RXzE{LSl?PHE5tJkrXc7OJU6Q#*#}d4eJnEc zL-c*>Ds*;d4?F!G=I7CSYSw3z_@L8#Q>)C#!VB%;3)KxyO9Nq^GI3g#NaUC)=9?7? zD7sIH9n%(_Fu%Z>H~PPovLw{3V4imsi(Kd!cNamru3%J#(J*>mzZvVq>w3q%*U1RE zDhA~Y`UCrmIRe1KZ;jZ%F(K|Ay4EZ$C4?MeuRYHI!aw#VvMYi2pK@ZFpw)9#ZC%u6 zVGg}_8dH=aANwkS?9FkeQsHH0=w%Gy-FAh~%g>AuR;tG--l6FR5=fGF^89JACE&ep zygPdHGt~EXi5xW&XSVPCx%U%?PIo(NnS8u(&-TEZkDft(8$Ieuf4{Wg(YAYUe}3Kk z!owM&(dM-0cgV*52fz4v@*_(<2cPfR(|i5wqnX|e!`_ViTTYHH67%tVRa$KLHy*tc zLAiw~;{X^u7An;@$Q_HwE*qWM$f}r@LSN=vrr=DR+`9pDXJ`M5e88-o{J!F`tv6~K zEfD}@9YB@es7Nt{bCxY0r0i0i8wo+;Sz(&3l$*_a=GBE*^}BTr9P7Qzu~8`KIL%7WUF&$p zmKlGWcCyQ&$i9%RIUcEF5$#K8&ooXA&w-tzTP9vpW+a&=8tFxM_@%~uub$i5+$?+L zn727kkiin}J-)PtF~1uKV{bBE=d6s=<$L1H7GbnSNH0eZWDcfQUWs4nR#J;$o;?dUcg!SH)8ZZN+GU7YJww=5yYU#`7%W?hClnK4K> ztoP>G-un^jn+|m{Box@#HZ`g0!_>&|Mc%T{1 z*Up@<0lukSk0;S=?!UD7u6y)c{wR_tgz*OiMkqs3*9dVm5fV`JOp0TBN(bQ>1oWZ0 z$q+`>&G!d>{-=A&Y%P_jkby(%f4edJ%y-nlgBS)+Qf9rs?Sq0b0ty~9+4$EM>yNxq zMYDiHSzIpjXrR;DI(sTcgGsrH)ns4qK5sbq*dKqq3a2M;#emBEoU)(espArkj5Fmw zvSs&4>&cu=@B~c&m|JS_iXxO1)F^y_pt8?-&o!Yd;P)8x!?*gM83|hz&|QvBN$qC+ zlYB8~i)9j%3~npB|Hw^6wW%2M;OId;FGEc!j)ilYg8=MW#%msPyuk23N~S6T24{FK zzvV5@O4X}Z7LZKB6@(xCJwhxfIJe)|HqyVW zEw}D3C*DH0>ZNKlMIQ8SrKUMr4l3ehh(ri?*n25gRUwNvTav-aeJ)jl3axByuGxYu z_-K}=$#kiA5d&v}?|ytZx$106eRI`bBOaNq)e}|jBQw`forjbSf<^K0O@}$38~D)* z;gZ<#yoa_1DIcepP%pn4IK*+fZ}vk(&r%}UFOq1$1JD2gqb#!h?1*D?M{3OG`Oer_xBb5#{Wop=fjWaKIyf(f`~x|L_fcp zcB$o-0{Xy|N1wg%Z=bE24!8i8Jht4WA+9fhLvh60s&Bi&DA#2X7)YiPPg-}4?%KJo zS~Ov5repzzML6~Hj2~Zv2KI`2;py4!MTr@^>f03B07ThMcg5Y>i08qYU>Hq=)VIRN zpKRqUQ)q_SEIW4#rSV=W1m7~X^J2zmz8V4ObNT#k`U-lpbmRvfJFblI2Te{>X!i8k zTKd+D)&3(jv{LZUw&|~!*xZ!RgY*r znNM3V1}IDd+gzy*8+D$6O`CIixxOKI+qsZcSn^T>ySCPSKKMze-hUb0O!Z2JJ_&|8 zzcS=|9ovHK*CQWLn{3_pKW(^4V;63oA0?*;;4@u1EQwn}xG@3o5268*^NP5+D2bK-A5*mMKELR zh!*Dq_xMxd-1b}d&dH{RDoTcDW#||(_^Pa%EZoZOujtzwPk(OhW%7f`{0|?B`{Jed zN2~Anf6-|VrgV%ZkLP5S2=hKYy%S#3;@N*Si!w@W%=;DIwZ;3%a-*ZYZ4(E zbLme)JHfW!z7JOgXD(W9;B-ggVN!Wwp?87mN#pkwBk*GY)67tyed=5!I4`^yq08{f zciXq#6B+?;z_556dvhZ56vEUXwh}jTz9ATK38=lL;#tMB#hu?*xPbV?EJ5|&vHMLP zB?bmq?(HxTdE6`-?s3odmwJh6d4;9xq8*$wE_}2Xy*1KpqK5WC>B2=|8gaZEG(W(W zV(;0SPH3*;Z3SE*v?&4W(=+LG7-nacUEoOa5a6a7hE{)>vEL4t*_(2Xj`+=NXSYBr zLTD~K7zTNEl=Mayim!qp)1T+s2`B8_TS-)W;e$vxOXUGx`G&e}gQp0c6B^q85iDqL z!AGzR_cjj|hx*>+g{brd=un_EFGAA-*hIMoK)CY`kz>RmUzW$hOZ$~QYM%)rDxsxS znWp}uS?Be9VJ@`ekdNH!6C!c#`AVbZsgS*lrB0$M21I6rRXg@k^;?4By~HCkCm$u| z9(w3T)v+it5O)=Y>*W?QEo}>{el90lcW-^WDb&>3p#D*SGENju9Qaem=lm^CoC?bt zr2N%;fQ9@^6p9i2wabJ1_MeRl7=AsvSks~H#u%i&c(QxA`e?^nhNx7b^#0(w*C2QI z3rcf&hyU!uz7EcbVsUBi_=Bj+=5;w8DxO&%$jr8V+1_!Ybl$wC88#Zx3qCSTz|dvQ zIB>GF)ivLScIirM=2)FdWn5*EVVyT!7LHetdpQ-s;$mt1#sdxt=gNEDVqkp-U5*yV zTg6yhZs%Gg((&<{YjLzHo&dq`@y-f6h+BS2=_W2h%q-uQVPVyvSB~&6(1yyDN`B({ zrD2}<@fH60YLI$bxWzViJaO4RMJh5+jW_=I$V5j$gY;P@KYZSlQ)irvMXHa`ouFkU zoHX!0D&E7%@1ztYH#WnqBszmS_#^)2p+m9fYWGzv&NIxWe~9msL3{rjZZZH;4M{*u zO5S<_39pGjgo#0DmRoZFS#fM2HQRB1P6fDZ8?{neo=J;a^j@58z|W@U_1v#rC%Q-L zR-+s4-2>rVI#}XA6xCHuZw|T)X2>}l(Yj(Bca-931E!RHPB8d0g7aYqlm@YczNNZm z@qS_PaIE{}pRUZyw8xd!_*uo{B{1ETY)Omon1~k>yudSIVCWOsz(M=)6|WEBJOQPY zGWg=)#{DC3Pm_22G-p}pWB4@BcbTKM!Sn802ws(a0eVe-MJG4RuY@A`=|iu1 z3Jb(QGM3`}y7!+bt7=chNuET}cderJSplhy)~Ej#c{KR$>ZR+i-iss&VE^Y*T^L|> z{s|7;`Ns`fJV1o{duwYC(K-yd_Fe%9>Gtv~zf0RNxj62*9{~jLWM-Zl6E}bV~+hu>fuV?0F;eibrvrgbs?W3c!De z^EjXf0RL0pjcE$rQq|+CzE37Sq0^Mjq})|m0PVa|zausPLMa*|mC~rEE*)t(TE9G_ zJ@Ec7iZQe|mWn+sW$IXPHOUqtQa}kO7X9wKs#+jdPHA=|?$m`V5C2 zA!Rs}D=_}1)hQVjWR+zE3-B-QpSvd`E-g+_6rc&kVx7Kq_!ZSCfGi%TJ9ql?TEHt1 zPz`MEg$AwB4S`3Z5=jE(-~z+Ap|+mKR;(>nixkk416RY1KfPik#&sGZjK0hQpio6D ze^h_8hPHCS)Y>;ILztuJv$y%8ut~1d$ZE}1M%-AJmy<8xK)7Q9xmOr8t1A4y;#+PGDe!FrwE-SJ zC4J~}NQ6@cAy7NxHd=00+C~mlA!|&(7VJ8eDLm6hSTA=R(@Sl_UMh1ap3#Jh%R>Wf zRi*`#UsSu7yEB_s4eht@jFn=R!WcFF-lY#c9+gj+^koqTqLc%><9Z)fc%-gBKPjTr zWtz5`ed>ye%ih!B@BE_2M7Zs3i~HQCgSfEbaI?~HpYHwHTPeC)X*yP0U3<%v93Flt zoeO@pH9ii%`aBKR-)8y@Bqo<6bsYSLur0y+7+jvRc|p_pbF7)%sd;At_QJyYx8rL? z&NkgBQQ`XDB}k(sylA@FeK>|A3`5OE$45#jwf^`T-Yf+2xU7#YM16T~#Tp zj!x2$858;A4JjbR;!$`+NNn86f&3_|m!c$3Mh~+1T9|29@cn6Vz{!VdRzWFchm% zUmT0mWs;0wx8mRGb{01IIRJQ(VOV6^L`+AtEywZ#*9F%nS(TxlSkFQ1M5PgJ0^{el z!~J-+vE}P+SN{$@>4lQRP91ospAOxwO^a+af)znDWH+rC@H58 zv1fQTuY=y5vA0XvGVh&==yT-e{}J}glWtulyeq9QE)fnY1w-BaeXje4bMmYFj#;*~ zE_O%8M@9qqk2>egJX)G@6^uU;9kZo-_gk*baOv>*bFoj9D{yHv zrX((nc{&IS$@*n5=~i(YO^x^E`hli#vS64TCTGdbzlt>z^4qs(!0?h)oW0h3RoVE~ zE5XglUxI3D`%*|Y`tiz$V(c}vFoTdyU_mIt-jp>x%dR&6asQCJPlRDMgz`ArgGcMj zpe^<6-*#a&s`4!#Nx7%Dem{rZ&@|IkQcm+`KP+&uh-p75ZhuqOkW-RM+rNb=mak z(y>y?gW>tu{_{;wMFx4aefh3rJX<0A4F9J(f!*}0BH@R5g|1nAs&eYn4k+NZwstm75I3W`wug_f`NX1S8LyLE=y_>Bp}_lpSm+njG*c*%DI z;J$mc8K2{rj9Hw+XS~rXK0#6aAADq~;=zaXAs#}8?#h+0N&8j8o)GKRItLnGH|7v&Nq|1$fwD8{SuYrcueb!?@d*@Ik@rddQ#a)*%i z((=D(s!u&_9%z1O0rmIE2I5{F&qT~9KxjE&*Hwn)(-wZqHlA85^m&qh8Ce8s3~X}Q z5kZ8I2+YV6^Qq z@#~;lPuyXEzR+n5>e){)hZMnAedG}V;!*x@;1zQnHv}iw1djq-F?QuICnCfRR51Pp z-LVlHlNTzkzSi*u8!^C9yD(29c4+3%$7i)0D(Jx~vYL_ms{H$kJx3;@h?3>0=NX*n z!$iKs%8ECUxl!E!`8rwTyC?A68T0U8p&OXbhbwK{F{3Gfi`%gzE8TbXV^`MuwD2yJJ9fW8F9EC^`Ph(3gR6jrTo>FKzF1|PzUi<==yfhF7 z$Gq8k?RSNDbj+0q^D`4yKLX*C(z&RNUsjhrPhV&KM6!oNV<_|obZ`fy)x(`A?hoLY z<^6kcGL_cKFo_Ye*_Ztq>dWYUuG~DFK$c@$`(sSHF3tK0f^S$VY5eQg)pR}r5{=Ka z@?6n9h6Xh|5ZHUrBuVM&UoHin=|=f~=ml=-cy+L=kSoSpsFNv;rpZ?1T3mMwNBKEp z_s)8aE^jeK21kmfz3(>OSZl-ueLbKAoB29^``(%IT9hKBb_$gGSe}wlXT`pf#rG$* z(0+KL*+u#Oshs=QOD<&e?5 zSV3O~4RfOIi`lOU{*|Sjpt|Zj0p@%s$wcXtKOU7gZ+F0E=zPKGziFVl4sPRQ@T_yep2esa+<3)#?D*$Zw zqkCWeDe}<)EWNrBQZiUgoA&Z@POf3J(P!)!#yTe!n(8T|{)Je@B=UrOF3x*U=x@VO zxAouzv9&Xe?Ku8PYcp9c2>%Dm#R}~VUb5H(0=5K2blxw?I&mFL9a2m zY#$2VssURN(`M7=5)G6(EN3U$|TWC(`mdZm&0IQK6&V>Kj_20Rmn5P_ zQVkfKW=*QYzk)iM1QS@>u&{U7@J(K9=HbAHA^9-@9*(QwrP|nKaHSMw0>{METF;(X zkTDSp`M;E5xtFlD&}tzbOg1VH%hPUi_4u?XInSo%cRSA^!B^FuFi|kVvK@_S{?D71 z)tS4R$oGm3*q&=gUgf+T+Mfv=og zZe9rUT>E{+?}ALjg=W+dw4ci zyPo&BdnUuEctG~BsZXu>nH=3h3-lZOwfPQS8d)Ctvu3_KZUnBvnM@&_ie^`aHKES? zO(=VlRYh4%aKO4Rv1@xtxcSM4ym0G7U^p;?Lu#V8+xHkPbT`p^FuNUfRpl5uS$#Mr zcaf=L3^bWZ7qfR8z73f+lIF$=gfcVIR}JP(gI^nKvzgrr08q?>3?}U>;>AKF}W61j@>drw>|c8r$H#&#)PF z&CE-y)Qvi#%9!NNyUn}>F^GK2S$(S?BpT9B*kO*(YKauyU5mra(r*~x0D*Jg&s$7W zZ;bv5=U#^{XBf5h`cxjxZP(n9(9#~i*&-7Ed-i{GQ&U`S z(}|TQ&+mQ9#Hcnf z)DO5T4?Fqht5xK9h&l>h|3t@at?-FBM!0>Tu_<1^B;9{YX8t71Z{!%Ou? zXOr-&z}6LwSYEOq7C0BsF-amIjU~>cS&oW|qG<7wL8&-sD%Mf^cDj>izDrRSl#et| z%u~+6x1mtcc7D}!;#c=p@qU||At^5Ni0S%8!6yKRY6F60!`WSZfb2M>GFzf#ASQ%X zwEjd>!vJxX^`a#<@>Kw4Mq^&wwh6rSZh-?*zSb^@*%H5@MF717QE$hXm=n$pz}^m* zcPZNW;iKB>^d}-0lbx8xCg1&xW!^{dGMz7GUHlv%GjSViq>9R$#E7?LrhQ{Px*LcJ}p=7uzLAbf6TDtbTq&ahr({@l)7nY7k*yuz$5Sv3s5V338Rb<@KS zE3F5&TBmnQOxr4Pqy>Pu;sqc{?~b!-$*j(gh^YHnQ*mo-GY1|`VCcQ zcPwW#bg%~(w#<88DorzQx@e~}t-cdhQq>VB83mc|DS9=?Eho^SoGqC?V{-Ju_R*?c zx31LXnc9yBS}RG46~dgsc~&%_ml#*5O7`b~?O zmw4#`+HdTA=lWC3!d`_;3!uKy!iwlfZ%s;)?bnT z7UFNDoT|m*)VrGZe~twjjC?gd8c9m>F7Zuq@BQ8N^F=>3uT2v`&&z3 zbg~&()DFi#J5=2+?+Xn+<94NT_cH=h7gc}t8~|vl(C@=t zA09f!7Rx0nJ-`F2NK2iE(bZ!&WV~r;VHqiHcC|cPTv9Qq0#u?*{UKq^W{BS26VEAJ znkyhD^YBSmiL=MqOzw8NgGt%R8taaF_e1vX3K5eUvsGD@6-(=AuD!yMoUC=2LZ6$) ze9*t8x{UM^P)*3E&*+eF&9;LMkp`xL6S(!?taI<|I0!KZi!BDNkKQT(buXTfyt$L}NE%HVW>YCt_Lu<2h82^fd>bi^!55vmOa1LMQL3$0f@a*5BdSRC_JyC1 zOQEgy`Xl@0Qjj>p1{-#emOpNby|ct2l9LD17D|t?!@Z_HhS|As-RZGKGhPk17%-A1 zvVxCdx9t8{*-u?ew(+;1Od|eW{zoeO{pu0-a=!pzhg#Z_^f2{m)hKyU6v2=(l~7jH z-d=p)Z~kv*c>>0X07uPM&GjF)xEeg5$^K630!Dz-kv}Hak|TT*T3UKDdO{B{S)*4# zg+}S)%(!~g3n||m^7{N>Rbl!q>oHm4Rk{^TF`?{DO!i)FsKvktluK0vmT%vjeN1EK zG1_HOeiz7}50Iq6r6|R%bsi@>X>*|5LxcGM=ifT{g{OcnW>a#EQaoUTQL1gq+kbEG zdLcy#zy~U~N1QVL7rJ}7hBg9h+XzA3o8z@_*Kh?qfa4PUlcUw;PoLb{?wFnJbwsZj zhv^5`-MIMU29<{O;ZFUFNmx?|5_N>?_~Y2L#N)Mh2|M>yu28cXx;L zf(BJ#vGAYhgr(39Iz5czMlzDkWIn6;Q29L2pBInoFj7qA1)lf(HHDEMnvGN6CG|`7 z%5}q!xAUVlTBG-2`9WD~RTAOns-w(5I$Y_5Z)@SBU-O(@Et>o!auyD*C|4TM>B*TFUM7eC$w0ZE9Xf_muLUM-tugG+b13C-0}`?Vdd3^6 zs=vR`(h!4d!d1%@N#la|Y=H`!Vw_w7hkdnfJy}b&k8LN9>7wMW7V>bglPlTHnj}A3 zs-_au8$$2F|6MDuKl}Uf%1hqDFJ*Q7h~Sf{o3dB?RqkI{?ZU9i3)>=0-tiZIkMsG_ zqt`B0`&u4x^A-{QW{5b;eIqH>Wg!h!rI+`Uw+;>t9@&qHPJFoUKB9u%)zvC9*cQ3S z26(a7s6CmLM$(GmrM9!2nrq}#pi?n5$rmk~)OoE3za6!{W0_&CvYt(<%0u^J`+}~| z@!+jOBxO#7L-$rJW_>Nqq?)?7dFO?XXk)IXvd$-09BKT*>yo5Ax%s*K`wCOFB7vqp zLg}Gg=dD)zm!-HY2--Bl90uxeKdWuzF1V6!&HLU|H_&>PO{1BGyV8y=*5R=pDl1YV z1gDL=x}2e_EZIuy0szVN86i}r#>IWF`p9mT!%r`qWM}qiK@AZZrnU{Y!89dsvAGykPs6kn0(p)a;%zJv9K5|bV0P9yvt%#>RMCb%h z9j7L5;~wr{oR^AL4~jwL7NgoMjogS*{eg5J-Ey$f6!i|BDwCb1fP-rM5+woS%BJez z-Ia00iBGY;%`dKaM?g#a;iF0f^{LqgeqtLG{tD@4)OL%g?-kaVUkIDK*E3-b)B2yK z?Xu#9zntoxu!&-PGGW&sV;|EAhPLssW|iZ*gs2KDUiT=nYN*|Qa=Sb+5NFUECaEtV zp1D_|ZsySe&mpVeU;cCrTz%0(vE(0+KdtLb^YX+rcZ0GH^iGFzZnXAv6m&5T!Gkgp zOQB?2Wb<|G9u8T?Lk*xpd=44C9S!$dvwpOkXO=7E(fFjK2XQZ6k4miU{TXVkQVJj0 zw*0{WmrXlFnS&YTLe}(Bf7;p1W33z?bOTSYtezRj$=m%m+tsva<*S41#73dC4|FJ= zrDom)$b$)GZBF>LV=X8O6-U^x|iyyhXE41Btuh z*AXAA1iGu@MWIbVhrMSj!@(2i-)5klkV)x}-&To#%JB{8thx(m8{|Y2?eo1M)VSxx zl=2ESgE=kt^s4(QKMJp_KLVA(tN7l#-)K@hyb$r6n$Za!TKVfsEd6ZFb%Hl(mb1Das<)ccV z7BKlC(}60BRWHCMkNO+ej*-t@>$kOe$x9?9f9ebW8?1Fs>2Q$Og$_Pwj#U!W-1d75@69+eAPF;gdjQCm8%VvM?Xg+Bh@{#wGI{4wS zaVS+^dqC@ThTc@ZRx1HaH_cm{Pv8Lq4Fv<9l^2VkZU zcQ`WbJ#E+sn&vXxif8?HF2X> zl-h6X&dHC`jH_H(eYI#vNb@gzrN;Mzkql3UQ?qQXd76x1_q+N!d4uEJskSQ%tE4Zl zHIcSP;%ft{2bWhrs~6#<6#hkfib@|D+P>$02xe2WmilD%Xo9FneO&JSOsF5*%Enxk zKy?|*_4|+dO$l5Ys8+QXuk^u&3|!&pcDrYQxrpYd5h_My9VJ-T#pHWs1|%nen~+?w z9j0ccWWDp}dWX5gqSBcdM{QpluR?ZhwpvudYe46dbdXON{n`ILG}}&S8gyd>rSTQim)7l`4Ctq_p3?7P;Ippk-D(+*XBNif1gU!-7~^G2^33i5(f{Yb`oUX~%PplKU|R z*@KN`vEC6K{&V>_%r1q^-EpCOze4*RR4;BPuCWSq!Dy(1=PBtHbemvgKqWqk(sGyn zbhsVe!{Do=% zINW3oFtQaR6iKypnfD$Wq~i>dm^WuUSa!bNf<@deY&;ooV-*T+NXBK%KSX!pxmf4U^Jz&x>L9P zZy}tiR6M7F$w`2Ykx0V)5pY!fdT!p0XzLYVBZn5~W1|z>WTw)8!^(YHIB-0tj+1Ev zwNj?rO?u2gtmcr`#?bO6#%M&uIK}+UleolYy#@B|iJ_%bnP)#(bagh^n|3B$W{m$) zhKcVFbmQh#(%J>Dvf_^KD-J-neKl{XFX1e%DY&Q4xk^zQBd*eD3*O%<*TL`@NInY-dTn86LlooJ2Y;H$m3Ks*cJZ6xH6C zuqr4Swc0!jkkzti4RBgjvGa1W!-3GmKWC``)$^}leXiH4gZi2e$T9!%YTYxb8mRXH znx7*K7rdIrNCo(HIt&0N!FNsGeR__9zGC=TyN2fUjw8xlxU z=hvr=yKhjRkUOZX)PH@B@i&xQSlHSWIfg&?KK_2N()QfU(YEg^3W~n32=N0T=vj-k zy6MUw`z{)EOLn8~qVypwN;k!AL90FgYm;V+uj}0q1Vx({4k<|gBeo=&l2X+}6x;7B z>H^%O?K9x#@z>D&nZ*fs)9|OJIaEu_=DQW5o!jdsoZWLm7A4MS&QN=0#lMM6C-C`K zCDF0RQ@3gz7~t8?yx$rg{c5pZ>Owf*9KlTr&;&2x6VivEHk95qZ8Vwq#S5Oy6QqV; zoh00VajBqNWlS!mlr`=JFRbfzcS8c_EBut6W1TnALfF&LJCTZ328NV{B;^)>O^)(W zhfOxE97~(!FKp6V=q&!yO~)$N*J?d2*a?fX5`P3%1X4KADesh;%kdTMozLVo!GTn3 zeLts?3m0*cYHKmYLcDZ`h)Gh0Oe*4tL(W;@ChzJfrEyAy*^{s5+An+Mo|`SEgmb`1 z(Qg9jao`8hCG_RR|;A`4&(Y_w0AxsqOW0QK9bz$ohJxGrfsu}eKrqqvIF>L&a;SARJ`akm87ONa( z8u-FkR619$niEO)njh&&xZaI0_Z{e-glm|8-C)5>=x^UwgetFvNrvCtJJjk`yr$<` zhGR!nm4@Vm|MJZjs{L0QP#0<%lZ%}x110^>ies{usY|$02Lvnry!ifAYVd$JrCZxw zAl{JHn7_RvJj8j|7yu;0u@zu1qHLCwq|CQ+Iuu7FFT#Pf%j zgoDlaKEz_};~dD4cP2GR5n*~oV#-7E-dU@YNs?h2nXqr#TB9c6Z`$amZ!i&(u&EdQ zbIPZesO0(r0<_Da4^TfaA>lubODDv6~%cq01gYSw*E;?bK z$uR+`i)Pir4Hu^+$E2cUSHUdpVsxJRxg3vEC0|VNV74crZvMRxpNdPN)%H`}Q;!yp z7I#Jen2dfWH&xuY8wV_*5IE-ju)S{?@*~mX>GHHzObzcw3YyIGxtI{|xInoxtn0NX z8<7J8uw&0GKmU^e)-<}p+QWiq}#8$S7@1a%X&z0n^VD7`JJ8#TpIpV&T7 zk+?9?bs%D$l~o^UiLrD}iZK$!&IIm0_iO5Z=Ti^eS`+o|?fIKyhojsQ?m1lWz2*zt z?A=^+`0iRpz)$TITf3X(PF``5)MBmekwZhJpGx)k^R(jGcnlSNop1m}j6-W7yX9dm z&DsMgPS{d;;-$~(UD|1ru4b+|pTYxGF6S1}^|nrSUD9hK_)@GB;}IInj`lO+crl*P$P2dR^NSnj)~ISu_O)Q@FQPV0g{3Jwf+_s3ui@w zLedQAMI{iEHB63U1dH!NRCe1*Y7aUDtv4i>wSshtn&@_US3SK56-|@oAAC7c^iB}! zo#%Du6}~}m@j8minSnx8Mp?MK&0!MG81L3He(ku$QPvPLYGBQcmAD5<@1kc_Hhwlo zUcj^3RuaNE3$aJ{M0{U?N7AG&tfg{s5i)S2(Acxc_OENxN2-EbWcRP7rzctTmSlNx zrS-(5?$524f=@mwT76y+**o2)a+xOhB$9Dt@Kulium3|}DSz1z>^Q#T<+s<& zmsvp2?PsnOfX~`d-ZV6XBnmzEQ{} zuljEO@p>WU{>{yTq{TfIYQ4m>6L1n78Up|WXyaW{HL@CGQK=2oy7Jq$Hsz;z1_y@Z znQTWe!g*2i7f`V1{Ak~^&z>Zh&s*QS`ahqEdGGZ7MWanudY2MYPK2P`x!q+6I2Fzv z*gvXFI0kRv65Bt>xa9b%Q9sIudgWAZSfyVhBvk}PM}zYgoG;}? zDUx!Yd%?9dcWG*AO70xUIS>az<;qM^P)Sfw%z=oA15w8PKKDNl9`O0R->>m}K3~rl zLAt|`pA_B;f7E+ae_&6VyN}NmYqFn{G(WOr%*F6yCmL;2up%uUv5m*-G6bkb9%@kr zoc$*c z)}a6Bawrz0vrG=cOWe5um|m!-10W)~AnlVw(HM$}^mSK7Ow%l+x9~%Zb}#QU>fErL zUdfH4NVR?Sv+gw!lDha$9Y;2G!A-#`RxbeZX&@er_nJcGeut+?d=vD>Gzlcxd&|JE zu!{ODgOZskKgsUyJS4LAJImK|+q}2aFT5^H1a3~m04~e}CS)dRKvd{8hrMvB&LzX~ zPVa+Qo}RIxn<;+I`O=g2DqRQPt**w7kgCn#f66ZWgQ6)wdNKH@WaB#Q3EWp!yB1;- z*a-Sp9|v2Tdn6tNIFH8;nWKv_L+uh+O4yZjJz>kZ1jsQ9#htwETO;5{Fb28{sp9K6 z15^ATwn?UIOQH$Dt45Hq5Nsbo3OtKj3**Ly0A`;Nfz*rXm~q|8Yg;!Uf;omQ_GYrM zrqO1s8DK01xUQVbb9a>*T;eaZv@epOQFfQGp^d2s-?R#xcpEdSRn>jYG0Zr=Nvgjc zzb-c!_l#LmW~gwZ6^LZEKz=(`gj>-0j9GOxd`7r&5#Y(0pQX~l+L$=#7pjvaZ()3U zClXg>`5Tb?e-#$)p#ac1Ho&r-=qgLk@2b03 z=tdA@BT+1O+nOaF+o>@cQ3`A^Lrv+V>z8Nh=PV$kY(o+nXgle)2+pGCy}DYB5Xqnp z0hq_$zrLtV~*V+2_xI$YGW}2Lcs>lv(?^#-`s9cWH>&h z)V1K<($rZHLKdr;$Xg^{pkpOhwDM&bBMc5e!s&y)Y2A)Z|3{ynUC4w{$TQpS{q5-P z{gb*xd7xxKz~7OePSUc@>}6QHO-UUlfZwzPIIwn5`fP8ll3c=HKjnfMpRUm zz#iymLF<``wRcULFV^-l-vBaATGsl;JPDrM^C2oJ|JbIho8%4f1Yi|*9B`@%_zCem z$M7^F`q0s=86Smv^vLt4$+03U)6a;0aw0$qO5dO<#;`_G3($Z)ZRM11QCaaaSyqic z-ovzI`~Fl%9MGTZD+pqxSvaT9^>!cLAO7;Sqfi3qfflm5c+x}#MpciUsF;en7^Bha zl{;RIi)l9i#c4-%X4k`ooGrDMXE40R<9;{ei z0^oC}_3bkoIGv~6!!ovsYYb$723$j)`_&Lm;pNZ0p8f%Ig@fyf)(mXD5515%N*%F^B*2{3rQ6C*aFJPs zzovI0^wV~n;eRj{7%&i&HWaGYbTIzcCHD;V>D!S=&|bribFcDjw5JBv4Yvh5>yUMw zin`@Znf}~;z?Go_*VwQfwuKT508{Wgl824+BU>vP3nA?20ojGw;D!rp_Y_30rI-aE zBC8wP#H-c_CYeOScM4s|l`dJ$MP<7O%aI7d;=V)SrDoqq&MPik=&{VrVNsJ1#vEPd-C&ldS&XzGI9U_U124EN~&`DGm2v7O@ zR+8YO^*L*xX!b-PBXyj%5fV)E25!&j2AkpZDSw3F%M|mjWmINpBR6o_;7y}g_Ilr% z0LDEMJuQKcl}YptD}R$sj`YmE5-gyz02SikrU3ZmGvpMvn|Q%)G4ft!80khUby<_G zBNGF6+QqlWK%-B$x5C`W-qVDl9F50^O+=)l;-EQ8Ckk&H+?|`_#dIo{(sBKmAe?k%ijo|jl*i6|c;Sk(95UuaCQ{z7_?=fh_Gx3eoZ zq5B^>6*Ag9r;CK^3;Y?0&<=Z;<97VZUiynY27Dv11ZLTp&1`oI9+aYk0393%YnUyG48#J0G%gG_%3KWBi=AvV zltuKB$=l%P4@s%+-(Hn^nmzg-c~%}j{LlK`u=L8hsqDK;EApY_TjAcvxoLzWqfDg#o|rTQ5{o4I5!QQw3Kane_P3;Ggw6m@`LgLnRTJsOZT3;b6CTWgJGiJ*Oh{k3R8=M zazD*Um)l&nP0pdh`-|>b7c#D_-*AT8_6$tDjx63vgN8)5ErXjCGKsdavmiC^m>TLN zFK-9^OnUJH1c^9V)LGP9SOX^%ymtF@dkgIMltKfl@{tw5>$)>kX05xbgbgTPgq^^L z+&En}Uf3o2bFnElY(I6uqn+491jbZf1j>LxQ+)&dHW>x9#`D?7uaaCtpf1riDM~NS zQY(ckB^9KSKb0=?Hw8+b0K^pRdtn^CFh8UK_9&F8GnZS)Kxwq9o+BLRIW^Fv%IF|E zi0K&iVae->cPzRy>HNRD8u<5~2(G>0TF(KOf_4jrTtgI@B9@yfsrv&D1_oitXoLG_G-;&nRq454MQ&L`I6{@}H1? zU2=;mNH?#q{lR8ljaQaJR?uTU*K>fuLYbibgoLUm$^P5}Zm6H*jR<4!>R!(RXduW0gwUvo77{h2nh1mg5O8zzERKi-bJj3{_O7fl`gXujolTk9*`h z5{R_TbCpT!LnE7p8}YzpN)$bo=MG~k9&lkT<0+gB#2xtrDFnnv`w_FPZtuq~%O?Ww z2Uc#AAFTsrTj|g-p!l?rL3$FB3U0iu<+dj^M3%$#?^ocv1_Ml1@yGO#w|yklXu%r73# zSjccuORcv5v{n=T+MnAKPvpUCL$nettYv7|W~U64+IT{nzDbexj;Rl3F*=WMDvhha zK=&~^7NwrkGG9}P|G;6ynPRBsMSD#;h*y#&OC+p->41U}Xp?;-#l@)8a6-xL!q~7X z_66p^!9Mw`aM9ocn2sG)x`?J~k=mZhG{)&N4S8qqX693&vVChq!w3;sZ=*I}pt*n+oau&Gq3?{!Q1RfsOHPqzWtm`o|Ly!2^Lzy&3?PO^Z*SwC2Z-$@-Z2g% zq3?y@XHr{)W>mO-eI2+-FyC6Bmza0zenU%Z0U8V(WNY$gVwJaeOE~b+d^ygvW2TRq z04>FnDgt9mc?`o^2iE$B$T+En7@n;Zm(}# zm~rP1Odn98ea4(ph9*t<-3*Cz65kN)%TFP`sZ2U$?6?j~w>|=-g2z(t5fFc;C^xgB z&L{Te6vVF<#@%^FJw={fLW23G>rT=RI+b-A_-IK?(m3=AUS`y5N)AlA9+1;NrpLMh zG_g=)>%@QFFwp~54E=C~{FTUjo9jREPOsLr*x+K?+=p`9$w;jemD_B6eymBnk7nGR zZ@-6r#b~M`-kRuq?A+fhKS4XtDqpO5tx8hh$;OJEffo=73N~uO9@%qQELf+j&28cPIyI#>=qmrJ43+E zv}SDZ%mh$bcQ&sr$$vxiKiWJ!KN`7TXk0ULBKHp+t%9)Vh~DYc_S4qdWpklXW16z5 zli1qA+l(kG1zIwooHREdTsYyQGbbf>TCjE)Ul+IvkHOO)SQk?J`o}DfaSo;NVl{4Z z=#N5);8>Hkb#nY+I!35dxXc0`xliC0s})z;Y$(1^j5*`LAUrnNKO>_Hej7X6n$PS{ zLa2sfyre;$VlB@9^44r;PqEg5{Go4A-z=M5ezo}ZXK%l)V|&&~n<~nm3{NnF!+gEP z1WMkOUwYHiy>8jRJ5|y2d#s22a3Y3LU+I_<7HZwURv$o7?IUCc3bn0!_0- zPyZ8^FknC>?ZAVjUzF<7^>G1?MNmlgcMH4S%<|N)8aaQihwt4T``tQX&ut6$$f}s# zciY166rl#AsT|0!CC|K5KtH7M!l zCnkux$+_BnPX@1Om^}%{UifGJ!`$tQ5zKU-*Z!D}c#?nTm;vWdr6_=2A5wmF(8iTvGisVxy`Z4S7vx5~`DAkv z_*eb*T&r*wo#pm|9%=r81ib_oldfP9No#eC)poST2uY()$HpV?c!+o6m-t_!jT(yAU8r< z&o6Dqj-tMqxlL@f>|oed!FhvU_p^gu zV^~&SPUCtZ(X)1ZY`N4&n4cA)z@YakwRj2AHamSmhZw%WX6A>z)aJ3#;T7B{6>B`Q zM*N^x*WwEHQ7=G=cXr~5yO;Y7pp==eA8)==t5t7c&fd19I*YQS+r6>PScDn*`aNO9 zSPpRZn2l~soIYEsV1nl7QF`<0m<0h~qNK3xR@VA9-Blr7k9xXZhnS=qALCyD*KAF_ zOl7ER=K-cv{|SgMivfAZp7XMr2wjYBk30IPwFY-5_LT|LC)ys<<*V^Z?>Z(p-$|(O z-2K*YWx?flG?4_PMLuOep0_I#66C*I&^JZ z-vj}COG}PNvr_&8$MS~ZO<|LrBn9lajcoY$vF8c|E6owiW?pnMp%ql=-T_FIE-Oy9F0 z;}!*?hvGTFG_`Qry$kbV>-fYV7U6X`ilvQ!=`N#J^McG=f~?O=KsoZtKDnZmnR9D1 zHx1TA7sk#Q9)dx|!H%bq*u(lrYkqOU1GV8E#T(O49GG7ZfQHkvm>{t>uE!^Q2K~_y zFvpEa9Z!ThHVIj6@iXzf*k^h>R^LqFVG6mIFnVZ25BmJMuoUgx^@xM78^#dr$bHLP zns@W0mc68&eSG1sc=)%ec4WZPgX(GcAKZHto(^RN=`@$yleLJxGB2D!W9Jk>ctU3j zp&K9avj4wLMe6u!S^FV>!1{0*nNP!UKc3v4Qs$f7Z+=|nn};M)tN?Uu!Y;J4uL8kD z(Y)eT^h<*G0RT4vSgA-8F3?6~jwb;phX5Mi1}E#3C5qP6f)S3j_`r7BZ2;pg1eF|H zYS4T2a*5QDKd=E>0DZ-in@eK+_S!y_8|rh`07hqf5S5U{NV~P`{D_Gb1H7wc zJ-@CGG!S(GE9f)A%wSV!LQSqWfBRM8f45f_YDLm$k<}SjL|zo5T^^x-A-8-D%mhbg z!AdCO%^X?n#%DG-*~Fj?%#9*X#{y$`8x@axv~w!X)%q9&`R*Wbw%ao9SXFz0J3Epw z1)2%07Flp?y8~Bdj5@Z^3sRZSN%FhY`Y68qWKd(69Idjg2x!l{e&pqJ#l6*+YOm2i zHCb!1T=yIic9>oDeAC3a^#Wl$rByPM*yr@QSx)K3SE$8#_Qb(h6I*n|liJ&iQK_^8 zP@ps?-VoiK%yr$EB+Ki;6uQ;MSWan8lj*;^ase6E#_Y-UY}A;#x@N;_Z!HDc!axhH z;)P7^bu?c6?_|u8V5a*Vh?|#a-4QcO&kWkhG%&-THf0bxL47PKTK8hjDAjjuvAIL0 zoFBe;y7`&LN^OW-8-^1D<+40nXamKI6IW>*vn-sO34Yb-af0XUp%lO_$6bUzvS^;y za1p?Sv#jl?t>v;0mX^$9sfJhE6wRz9AyEA(GZj$o96TVg_Y8(LxbuH|AGBk&@~TGM zG*jO+U2AoFZRs=?TP}Q;Cs&2fXa2l?X1|Hu|J`{4MgAJ7cIt3rX9DVIQScGx>eP~h z`E&9!HC;tg_x6mrN@>f63vSPW)&bW8CQD`L;*3oegBLE&634Hi?}}$?mRK6}hwZJ| zh!iv5Yb=<+(4aC8$?8fEU-(0oFNeC91*03D_JH#%d0vBcxBYKH?6kwy25q3Z zU#x033GxFg*88RAVh9|lyi??-sg~|_jvpwIk=2!$I!0sH&rT=y=eJnv;_uiovh>R) zk3QU-T^1bwF8^k&*NQ+M4Kk{%jgM7i)LCogFJJ3f(J+D@(s!}>r^CKj=Z&{F1Y79W z?kDMmQHfcb3^G%SYKP2YD`lmO9d6`-M?VVKgX<-0 zkLCd{HAzatrnGjaS$t(xcLtLgC?1%dij%nf(<-#<9_X~_ii#T8Tei3GeGI~WL~2#V zMTUvK;A}^8m@rGq38euuP~dufWpoY8QkG|FbfjWTRy5Z+)`=}A%<})Sf5_Q`kG%$J z#y49$Z%3{@neC4mO}`aBmDKaF`Tjv;Zq=z9#%($(kT$cEp4IEU+%ZvxHI%#NZBjkA zsX1A3Zh|FrzUyE*2MyxX)ol#RVSP`C2>(3=LE}vQT`f)bq^^-ZZUmQEm;BHx<9^EBe*;?MEa3y)TV+B?bZg06ttFJY$M+Y5=VO=IU&d ztut(wPw3&VIF^*$Ci4-|w%=3bm&F5JBopB{0m<3MhMHjAy9=;meG`BP2{lmz5mA6A zPay!kZZlD^ydD-JPeUxsE@S*!B>Hg*Po&2rFlq3}rjw#r=M!MD7nqDxy;I;gpbAj< z76U1zNoo#syY(udTq<7ZPhzdG0g2YjsvMEyfMdIuG%kDC(fUeIhR=QojKBq~`?_as z89{*e`6oIVRJB>XN)T|wzsP+aj)y*~YNc&LE^vBx z#yOm!ouQcu0k=WGCPfr1ysL&At<>>0R3A+O)WOUw9p;Y2 zIU!11;wN;PRql3rp%i}~sS?xSG5&+;cOnYq-3TNFsr3y5OPK@Od|n_^u979XYn*^2 zR{f3-p+*;*rVXH{&_7P|#w+%ip9mgJZmd2>%e`4`T5`qZ={uMB4@2A_0@^^w*P(ot zLOFHi9LZJn1AahX*+Viu1p~tBRjKtTNsUW4Q^BMGzJPN{^gBs(`*yfrYg;zrKnV@i z7povMOO{v*_}~DEejPiwsY4Qg$Hs%ZA+VWwTxpEcoz<1xnKnzv4Akmq7lgbjFA-hF z>CKGbvh&{XtqELu(spRp25dWCqOIF6RVeq7!o+yQjHHks9AeXb zx4#BZR3Mb^+J(vTD+gjte)!&UGi5&_jaC)%mH!ih;vB(^vMRpox=(T%(G~e{1Up`$ z8HEMCJyZNhSS1Cn4EfBzyM81@a1qym&{W~mmx$DbMEaQlPDPci?F1sV9KeX=$<>~e z5G#zV!`;NP)cCg-9}qlHwPHTCK%o;bYIC_DD1`GGVhId7`?AKw?`{d zX=VuT6|RMtU~JL-HsU$xkDzBGQfoT#mL<4!QLabb46(W1)YO0w&jN-?CQ|e3rX?|(4|1$vInH9-9 zBo63pWgwKy@nmOdR6-re@@I8Wn-G*-PReG%4L5b!d}!^U3v>a*ZO?0v0RhSqXeU3w zcGSp>jlvon2d%^<85EDN=tJ)`B~cu+oM?RM)j5Q+Iski*lEz|Ve?Vhtlay-T#GGZe zkcUWf+Kw6w`(t%GN#)?F)HR%$jv)dS#Q1ktK!h(a0X*1{yEb`m?3T%?J5@my_KQ35 zL-v35Pn7e?jIlOH#3$7MIr6=%oX_ixVK?3y&Udyx8D~o_Sv^?T0t+tzhl$Pxe%{Uh z2fay@ccT&3aci#tY0&y9z`B7NsCv_YDz2~@K}40%wLr?$)Vf70Q8723DO2s5(AIi zN5MaBbl#QjKJEk2tsdKqNLSF$)&G${81v7?xozshzZ9P?$-lddmMp-hm`m;{RY44GLfumIGi{6?9R6#3 zoBtlai#CehQ-d!L98l}9{I2tJxXU*C^t_LqMB|glG|F6S4ohlP>AKf48qt^M){|Kq z|DmQQATp|E*!ILLTg~)3#h>o~ijn|W$Z<=n#IRL_=-Zg}fko6W$)c~#tL!A&^j2B| zqLN`>2KQBS4T^-ut0A46bL>V8yjDE&JVP_uS@yEm-wYnr)qg|ZK}}+QA^LH$4#_`Z z8n${UDZc-QWa!TJbz}B(+4!T$t2Fs9yv_?EUEE1=pv@{hh3Fbv4quz?Zc!pA+LiW% z#KTW6rzINy;?2-1@y)-c_*Y zpe6~Z%QR#1PXj_=oFm4M<}GOw-$DEzLDE$1Pv0VROuYH!uY>eW(5$}h zw9^xk0Rq;PpS1}fo9w4#|3tGc>@*Y5>+neDSLJEKe|KFQWp|0zJ;W_*lDnyg-Xz$W zV$Z$q?BVzxI)L4D;vWcQ*di&E!zfxbyD>|usM7;GMgobQX3#x_PKV@7bxW~diI>!F zgij2a?u_mlXX(;627vA6%p2o*(Pq(k3?ICxF!51;=u4KvaFgESR1Ynkfy>v%vpWkC z2J)e%+od}u15Ly`i4ViZO)h9N;v6IRl?;=KsgP>16w_#ziidq?UX>A&vnJ&hEk zs8n@jSaiktD^tbkY!7c39QVQ7yPcH3SCV1wF@-f`1+@4dtr>m=J4fn3&Ui*V>!6l* z{L|4EqO!wa?XXyDsy|^u3Pk$~So2^bxz;?GWec2a;xbS`z_^HB^6H(elR$F#bcSdo zvGYw(7at3(0~7#l9CDI!@j;s9o+DL%MQvCn2$AH9DC}nE_{6!lx+=Yuc@mh(arsCE5%ro%I_HNxTn7 z9;_@;!lP$E3eecN_XRF~oc>!9H+b1G7sK?5Q`)%(9xNpUw02^H&SF-y!~g8P=lHf| zzMQYU;ibuJALlv36BXtQ<;Sv)dPoh&rM}j`_R6iuLRRujg*d=48D|h0O8hOXgw1;u zGa_})2Tu&?>tr8M@i~exYi-R&wv?~gsA@!m_BQ+DR~0g?je^_tyLTSuaN@~FJ-@d6 zWJfdLYqWUOY2K;O!yow{%d=PI>WKzo_&dBotzHkM>7<%UHcJuQkG$#s}jQ zWZ+xG*5@Ii75`*8#fCQMw&kdP-0QVX?;;%+DtGJacFQ$KHZp=^Hac%`>yi8o!~j!u z|4G;3rKay*wtJqOx&>J*FvoeN3(n!ib(f$+_eT$7hbX0A=rLM)6}n{s~UTUgM%pv{3a7R*V-pBh!CF{B*lM48-*YqUh5V zf<9cb(!aYJhmwUxBFt*?a&l>3rC4$OBc`dU>xcrBo)9}*1nPFbyR@$ltb|gJ@$V^1 ztmWL=JA0QrDnG{)+DBFqoe(8V58^LmgX2f5hw$j2ZLc)n_Lk?WAO(AWn0}LLvd}&(z#@%n)4p2| z_=Qxzoz1i|m~|#joGj1J|FgYselSq;nLE!7I|KPM0mw*CO2kH@8zZnTaC6mDVqz5+ zbF^}G4qudqD^0kN%-LIu5FVt=wBRDnHm)wD;M5b9e$E_P8SqKm>vMzBm4lyt>ryMW zLkP2aw&E%=J#GP9_Scg zj*^9mnGFg_dc?a{TPYH~;7CWRooRlONXy+ZDR6riu$#1J_zoA#Q@Mk>I_bKfQoZs=dA5 zH{qS#>;}7^Ih0-bIEeb_A@x~}?5z++ZOsb!BdZG>^e3dM*rw0?A%3;E?=$Q;?B;6j z$VjBds(gLs#^VoS#jgLYKCGU`{bC1DO#$AEYupd*5z4>&T6KN%uUDO3=qa-4B_9F@ zA`i&{T>~DJ3=T9*As@5^Yd_^UJ%%0g?_3RhY^^8e{O6RNF)Z{izUZjR{z=T)>K%`c zGI!ldCjBZa*1s6yOl5HndHx1Z$j#UB96G7f|B!LpAYtoCyz7|5rS{w24C9=sox9(Z zn||b)Lpn4oP_}A-Uw>I+$c^!^5Ly0uata=nf;l8V5~Irb#y)0@JdH~?Iil20)DJ7u zi}s4+d8t>_f9&%?kS$y!#%?-Jqm~`_5RU6Vu2@`}Y)O&$-URgGkHi7b;5sk27>P7J zori-fFK=brkI>{^fN;-Yn>M@m?d;$o4z62mA15$5M5;Bbs-PP4A_ns*&vX^;WtX&B zTXZA7mKSo|zA4+s;xp`U)WM=Xna%3I{Ac{nzdG|R%8M8 zp1(|1dE5JYuxaoRQg*h@3skmKI3Atx|doPivyC zv(%`Tb|EJajkBMNuZ)DQl;7P_Iil*8*>|V#8)!{nxZ^(S`#3~6t_#;pc3A}^JI#m} zcOMo-9ytmxOC4j%t<^)cHZMzCbGC}Ed>7XTUI=Rs>HF$sU1YK`33IPo9`(~=9f4Ij zGD%Z~Z94~)U%cLVIe~rUX0Gq#Q8F&`Zq}KZ=fscD! zS4F9;ME-+(siSI`(19^pSOc{2^pfuh5ZXe9fgkC~P1TCe_L6*xfl{<=5+fSIO~T_x znC+d-g2YJq+nne3WJ}I>0W_O-n`^-xi6br0;W#^jAmihPOEYrev@~vu=RP|=eCG7; zRz~Dd^T=7XZQdp>?+>A@;@kb%_LPw)FTX7IbgG-(Lc>;B$-N^j!v?!{TKl&9LN9Y6 zwA}15uR)fG&`}RiWmV4i_=zg`0+I~(kc>4EY!JPu7cFt4Kow~OpwB$_UNm9r#RJ#` za3}4vA6};uT}nK@K8SFOc|-*)=MqqYl0@w@^eQj$XVYI}r?c-#t1^qkI`{+tE8p|8 z&}b6K=h$b+SK-*;@W!ls+3kY7{o?;-Ef|fcNZMm3-n}+lM2$&3^^el*?1A$0oxVhM(=_7scV>klrlmzW5qx#t!-9@EQni&9rg0j zFX$wK5qR%&uf3*DIlDQv4iy5Ggi{qh?%!R1<2xTBcrRu~k@Xsce~Rs~E2ecfK-LUp zwz<6l;PNwRcOoqQu$>oYZO1#a{5J&tN`I$%!#a(;T~?E1fSi0?oMP+ws96du1d1p8 zZGFLut5EZu@S?Y<+8)P?rkjRDm6SpUw(Ff|``PmPn`)Ztmo0a~e2b!mxE^pov8t2G zRATX*7xiXRNtg)kHfKH9K>N1F0vpo7?UV{s)WFY8ydBxVi{Zi8NJUwxYeum$T1yR- zwHa2mLpHk{H%UzZqoRnWTSvnOCi)jH;8v!rWBl{|7NiR%wI6BX+}qG8hJDanqG2VS zMF~w(IBr#BQ9I$;TtE|$A-?3Woj2ehiW-;#91NyBk*R-WY6v|RJrsl+dR)o-_5WnG z)#+hb=DaNArq72DJ86KBy@4wRj{4dyD}u~C(Yi~%AXOlLk=_u;u7>yI%P+0UC@B$e zY{I32^5}v_d{14}mg!EA#D5&r_6{YVR}kj|Z7YsxUO<(VB8h+>wBk}h^Um!CJu~-g zNLWlB!Ci?3EBvt?D7Oxoc`66cl@atPou<#}O_$Gq@z%9JYj5P^C|P-!1e)xk0E0@+ zK0qkOt)NOP8pi5O&MK{aU2tkmvYDH@$qFFLOxJ*h`33-aWXYO)q8(l@_!h4OuAyJAI0CcA@T@H0ENpFAT^z*8%p-7r2$5ar!{Xes);<@t&VtP3Kyy@jWx zVA-ONYvF^MomrrN<%v9lzt$~(6muHHTkp49Kq6}K?hi?YT_e3 zuM?2b@*|PmWz`0jlX81&K9OMXI^P1OEg}}aZBb}`N$%9~19*Z3)_(x{T*xmCHgf>C z^SlK|tJ($)oH+g&^Ds~K!>n7-!}VPMOx?6t&E&1&loBGLjZi2r<^w_)1h=~R9Cpf? zbIvad)umzhRwaBKsUyWWEC@C<;pI1#u9!AI9m+sQ>!H^fplu}3hvEtrGwg$A&5%Ch z1qsv}p_a9|*m#Dl1Khuyb*ODbuz5hcAeQ5)y>4cMM4l{q7Y0CW2LDV$sDPCxHfhDQtV%-h2r1x+UtzetM#{VVekaKbkP7aX`&&Y@heBXdV)7dv4X?Fh!8#rrP) z=iig{X1GuLySq%|Tc+V8$8cu_-M38#I>n!mp@3yux8A%NFg^L^XijYQ@?OiI;)U!r z+%vnsL$OtMDX;rfk&-h!y)fY8ba+WI14uAqurTRS8t%S0_7_t(AgOgz?p-}uRgiW{ z@%rxhSe0098Oy$?>WWoZ4-#^fVi#hXi*28hvLR!l;XFnfDT9;(C&QM2b(+TLPg;0G z#$P;k7Q;3yUQQ^BAT!R>K2^fM(souMI&a>hY)vz89rr; z{UTn+URo&Yrpo$ta)dwerL49ID5{@He;3=WCX4*Ub`mE5KNwGu97Rp-==65(^IXM! z5*$u&29C&%pu2rvGBV#2c^aXjm*1WiB#Md_nVLmWFEIxX|D#_x$ju3VB2>Jl3@fR+`HVI!pwMdsAKp!P! z)*oSaPg$?uv?rQX@^*mMKpjC+D;`E1K$pchId{DAvKM(6SSZ?Sm*N_k5cllhtqF_B zmHy80dN;s;94{`zx$P4r=Vtj(Uz@~ADBrIsj0ItsF?BR{xL zqUVMB?0ZF)4u+HeM*kvpoY|INh{@vgb=6{?k+d6V5m+PWnBvl`4R!M^J|wuy_37=^ zmFmdwpJI)I0qL!|#Z|R$*H(_}Q@V?H%hD4dvxff%Z^yFAX4r?sRozq%G2s?Th3$JTpe`107saCK-$wTN!NGkjLtGY7yl42y`AJQqkSXu5x^ZmHZvJGr*|+ zdvN12c-6^~{QapYSA1Rw?sZpJ7LrrtXQjqMyDrKxu9xc*aiM3jOZ)J=@ER*P&aLD~ zOIGa?9flw@Lfq7xZm+qP5L(l=FqPncWOV*+z%&s^(NF$B(TnxPgJnJmR!(V(fZO|E zyKiS=kVzuChy085M8RQ}HuaI-LYqG|^Q}P+&N5&7^bf+SY?5*!jQ@)KRzG@1y<-}e z&N3HUa0+WrZ8{}cn+UU>Sw_~tk2}VfF(JThg^o6Z6ob7&xFY~RyH${e< zEYsvW-fku}mj`WwMq?`s(%yRNyVdi*(lb*WL{SFEh%h&XgK0-xC4+8T>g4oAl!j&$ zuM7ZYe*m4-p|HZKv|NQGy{7K0ZSx^kFa+-N7`I6Pmv^(q*W zc)sO-`h4tZFH_`u)G0ZYF`g#*Gp0;5S~&AQ$kLXBPAk6Lu?j_)-PL{zRISSP^hY<| znaoz`dbhmW=@lBmYv^Yw@KlX;odw);KDwb!K4LJM8@RuNaDxR0RwH7Fygnefc_UaG zN6@axkn3&jZFxg;U5>$#rx}ddq3iJ;EwRPkzsCm2BT(*M>j=(;8%k9OoyyEDH<|0E z6I!D&WB*t8Tv3Ze2RX8V7lboOrxW1FXYzw$dTG`3q#E`qxdIP#NGgmPzqn{v!?Qj^ zC%63ig2}Ref8R$**TsJ@w9zp_b3OOPK5i#S^hNv|ClMi6ap@&D8OzVf%89>Cs0 z3R)4OEQ;J*rk|r7ig~23q%E5Wyw};5kG^DYdGn>+{I-oe2E&fU7luScu%C=CpFW%K zE0j+J>{-|IvVN9*BTL@>S1=Cn*9qhrYcE{YS1by0X-XB}%e9v}!Xh1ZB3YdJ(%Q(a z^Izl4=1$>jB#;DtxF~-*x;rF(HtQKV6q9bPELNRnGj{iY&!8;DHa%Wd%NUN8>k7N8 zT`!H}q-Z1b`aFAW)KY7fa{S+2fAHM@it%DQt!~bB7L|;mn@t>bCW5cG&(RVNiy;d9 z-5l@)&PJAw4l+!JolMvrxeC2LZ0W<%fu;TFJqcsQ5G2r<7srK>!;r`bszP`C`LgyTov)_KS~+vuZS1B^8Jo*$#3RDh15-S;o!;D3xJv_V z(A2_x25Zu?5%-oW{NDwPU=0dFcdY3BYd3BmaWD&`73^p?L!hB~Qy7#KBC96{8XgTU zHUcV~F4%-N+g?l&?sF8XJt3sXf73}P9gZ>c66O|-Rkm?32NO(36D}TN!)#;~v4%+z zg5$jQ-d8heTz%~%hG5z4OYz;+CLqKdh@YnH4uUD69}XbT#7Ji5-|kI2+BOYN$p;+> zA!)-!%EzbRPdN{h5-!f}$NL~3Vf@D|9cMD^Y{nuJt@r!2riA{Q`2&UG#pRA>-_Uv` zB_!zm+F=A-@frAvbU@%-n2xIh<;ZOV@Mtv4Vu_q=Ut)p71 zYdvpVfU@(>Ta+`yCaerL7hUogQycDrmiDbRsS}QL88w1FPBKmK6!!H{)M9qu!jDUl z*!~)y2{Fv$=7!9C+`_|n%Fvz`BCxD&LR7%rl-eT{Cw=V0jH3pO*DR?PAWg6$@hZG# zvQTg!CO6`|#3jzU6EYoChef#xwGq*?3-jfKMn@Rq`uV zW$9v-^cH{2;#=mA!7W<)fq)5ld*|7KZk6kKEsK%&I#TW52c5mx?hUQ`i_C!bJFyb` z)}-XPAJukmB^za??C!iwcL<(FClC0{c-@hoVK^>tY_zn?#`zsS%1Khk`_)TcTAQ6; zSyvCen1dBxdEW6gB|K=As2mU=yEiDpBfk~;4NGcB_d8;;SnTR=w%)5kOf0hp|+>v`=I4p{+l^WZDB z;*KDK;tc5F9}+tT@R>8-U3{Ob;xM2?2*dYgn59JgGo?+#)f3<5i;w>izF=o4Gs5Lq zf=giBt+PH>li%{644wPNKR93{m^cv+aIblP>E!wMtyJ=R6{@+uro!>eW6ivxD4o5K z(!M(wjF#D8gF^nAofxEhd5cr~yryDhES@rEY7>SGEKZrVDp8spVzA zC_`J{y=&cEDs~dTW}gBcQL_z*S1DUv4}Jz}j?S1l)>q>@@aHSPU_`+^_tc5mKhdoI zxhxEBf!e+w1zuzn)*w*Is~KFKM|=b@khQIH<>c<|pf?$sn=<+iJ+F1?ehnZJ(**DV z6{p+KiHd-=yoKusT`d)=J=3m+OJX1itS!w3VOCP8!2&6X#yOg1Sx3?3s{iizVuV;O zS)KA?dVBYYn%94JzcgU@dhO~w&?tH>8)IHL?P)(R#?-*KV2`>yd8{+3OUE7v)@}kO z=mdo@#qc@d3G(_V@L>bzKIm#oTU@BI>fR@cZEX!X{ly43aM(<-kz`RzAi+&R=HlGF zB8pTzzB);9by5Va4&X$ejEu}_e+Hz0=`GSjKRowENI9#c04|UO0 zG|X~%td)_||NOq4{rq|{XsTUNU?jLC*an`cHKZ|dM%$v+=^VO#9X;l*!*M#o^Lj@&Pbw;B zc{8o>`4h@cEv@bA?#uslk^L|BYkYB%Hp}1Qt`vOU`9$pC=`zpn8<=B39YcQGVqUTx z{(p|HJ)Y_P|M&f#Z>Q5mPB*$~-^!&DN-ibr+mVE3rCf&{$#u<++^_qdQ&GeYLJHuH zW*|Ri;)8aAj14L`10~J?UH}%W(l(Gnpw6%O;mra{_)+eT-{hhWO%-&eCE%(i708e@ zhsV?%vVcp{J#%#OCg^dRjsegN0<}#ea-Fc12*jdqTJ0;@^Wb9CqnJb4iMN^4!5yFuq`2rY?&yNov4J(X(!MG-Hda|?5Aw7lB#Kqjrc8n33)qhM8_OkqnDLIN9dvr( z;T$rw^?m!2rfssR>L%xsGfFr7q}?80D3tNq?dbySBg(^|nM&c|u@$EFO|fY6ZiBWS z%2uPSYqJ2!|`Y)bS)Rjr|%8=Hq5t z&so4DzB+9Gi9IvMr>MuygHFmaAUXo+dtG-hzt6Pv_Pbslax{3&>A9JrIaYfDBzA9F zYGH0x1;uI0CCf|%`rgf%K`Rcig*&U%=tZXPs!S+x6kRUzl$ady^X+*T7J_UZb1+hq z)JdKn7j6cOIiWXk`i=6}66r=lEDLX_y>UdtBg*^gy9on8McoHBt)eGhiY=)q_*~$Z}+)> z`825NfG|ol?&4!w{{mBft9xtKboN!$fh#5)m@~4VDmYo?KT|!tObW7A9qc!jH$gX_Nma_Uae}|4-1jjkv{#y_kmy&%<%}}85V!OH#`+c&y zYxX~Gt$Esdc9B!>be%=e^jNJ^{2Mtu*QE<4LGOJ)1p&HCr5&~~;(KRpd zODRXSo4tr|bE}Jpb9Q=Fp`f>Mk^Td|3S;r8aR6s@6#HChz1l8G7YRQyeoP5kjej@? zMmV1M+TRaMt)uLwQ2~Da4|Vt@?vwrg;lkOm@ZtvPgB17_{h$16$J-ehDs(-OFiPCN z-1uF}*qt{1*QWip$Og^VH2r+|Y7rRJ#@RrAZz;VhL&E9I2HQ=%%}j&UjmFy5l?z1U zQHw+4H$NUE=cvxsHN)>25oM1jOO(;5H*ie+mI?lS+eAS1=tM{SyhP^y&?5;e`p@c@ zfn2a<&3M@dhh42nXNR|SwaMm07#P#`a$Z82MPAQ(-}NcSuR&3k)A{{*hJ#>f=S5M| z>4%@(I~Ti{?Csq9bJB-b3Lmv%fxdY8R((}SYhjVEg@9hOQLZeXG~*&C;h&%fQ*Mb! z#0liT5aTIG*X?LHY_K6V^`gV7n)ZBEdrEg%Q>Zz}+}UtXfqv0u)J5MVE1tbj)w)Mk z#^R~zQL(j7@e9};bTAZ?4qVo(a#smcnup(OV=x)M@f~*1i4hX@JD5Q_@s+q8vpJz| zDxkd%xd>Tpq#czRb#CcoH>Du+uMtvzk8P$8wx2@v`-13zUDp=V7 zq8+Y#fgYl?h|``J-;`+Xc=+ujPujK!tdy%o)M;j?)s zhEA_oc*{Eu}YRPY1D;s z4HE>jg#?r7XFS(N$jXAHFmlV6>VPI=6t25v`DAUpO!D8Pi`)* z*R`3(&Hnn@2ARQv<*h5*!Vag}DA>;*b-Rau+id<=&^GPpy z`mb!|7Fex2>yzMK?Wrq*I&huCw~wJb1)J-m_#sw5y(Z`_!wz1VP(4*o^`mD#C_ht# z#?mxwLtK*CL&9?D9oIw8cj!DR92^V!l>#dI3w!Q<$;rJcoWV8}P2)5i)r|>ZcG)qX zANnS*4?5EUIg<5IY72a}*M|8nU+iCu|=$gj{axUS>ztsAo0KO7=W zz7NOLxpGtS!SuDt-QBm>KEgWt$)iu=&xH2eho+KKB*xaaQu)D;h|=G(i9~5F#EgzA zV?j0_q>1ZX`*@|xg68XS8*D-ln}V!ipkLJ{ggyo&{^d-cijU*xIAddDecC;A%}=P98Y{GWI7c z^kC>u33D*ELB=OvOc#A$!p)my2s?8`+#o@vSAkNP8y0f{NiD@E1w=xNAHs~&_=7b^ zMkW!wPIWuzW_-LgQ`ma{rJ$FYU+H1Y!MO6q$Vm+*WPI_jbLj+MErQg*%h@uf?q=JF zNt~c201Rx)FxOG>XFkvMMM=F^I%3D=NBA|q%S30VZwBbz{WZPL-4Jz(66>OBAj|lo z^9;;3S((9^pf4}N4<22!otVvmzIzMZkvvN^M#vVX`k>nmb&D+A{q!${9K4blG)LQ6 zN?z?26XGhKL|j=|^AF&RFGSW2jpGYxCKsX&i~R8_>)Q32M|Z+Z^Aeyeiu(_(@up*< zW~?lf&=8G^(pS0uwAllxrKG&REN9NGU93?MgmUWATG1_a1g&1htZ~py}_|!m_NH}Rw(QV%_xpvVl|M$pZ?ewo7?;p9`yl)U> zF|TgB|M(v@Lk|{XeW$8dxH1~XB^RlzuUM=*_Xx?3Z@4Q(?jD&V%a{8}Sn@2J+Rb_PnHwj_F&D{^%c`k!iSOie{S<8; zd*)YJzbJCWhtTrZrhU{xJm%1c*jOvvM2Ofh@4~g8Y#R=bIcp94=)xIOm$cfgp`j7T zCsyo(4{)y;uMwQYwT2hP0r&TGM>N6Cv=(|>{60JRGxRspOZ%7DXZut07pjX87=rs# z-}u4K4R#e?4lQ!n@LamSz1A+@Kc(ziiESTlyf7oE!d|$6Z3p13<~eqF>IeHjEVZ>! zH+t?!Z7!d62oBWC=No-vi8UPW&C`m!Fh2F6ZF@<6I7WAc9)+IkKRu{@PILszv7Q9P zy4|w93F1bg1y1XY4BIic+$87uopoc*cRrKbY9=1r$2a(3IFQM&Rw8=VWmfOy91_PY zBPeg?cX8D}eOeF&`)!|W!WM+gcSV|&xp;aukGNi8vYEH2R#*P4TOO}(OPQsdF7$Cjhh0B4`_EJHd&wkm z+ARkh&qeaJ#~Qkn@@2aB)H-K}*Sn7RsEMVlR4b4y$!4qMRl?PMLJ^it_A)xGD64wn|!GAb$`@rM17u* zlQFl#Rugu1U;*>2YRzpR<&A2Brmn}>BJ3WJ(vH%HPA|v2Zuy4%d$v932DO-n;*!`-BQhOzx(>m$j!(ijUVgB| zan1{#U{7_uVpdOiW?z;EG!_?-Sc?)=b#2UiPG$^s-X?aw$KR^*MkCv|O1gwGVQ}np zyNAMc2kq;EPc0}4ac_E3^95U-LDIUi~~f5#dov z=u{kQj%jqz?&)%|Y3bbL_l2Z$Hkju}kmEFy>i0!8!W2*@e?!Q?2@Z(jCi_pD#8M4+ zi!MbL#U<(Fk$<0@dGySOax88x;r)}-fHb-8emqeGj>f-WRuy}w9oBi# zhhxoKN;dZG_D`}j+ONFe_JTO>oS%YepZt(w)O=C zm*^#=uB?61y3^#`wP8zF_?~dDGr%rm7t*_<+NTuh%G}U9wq0;)b_LYrF*W&h4m)%q zA*2yYpXGuH*WA$Phq{L9m&B!}YT`KK&o+D}I<{m9kqUKu>NGLG(rByRHsqSMJuv|B z$SAd$+TRAB{^*%oos0-T36M4!N@x9kQgsjE>skKdEWF@y1|eiEZVN`WYgn4SG_CV zleBa>-}S$D{CVlUPGxQ9ts?Vi9HRH2!R&Awnnd_Io3cLnv>}AW@D%K8c6~F7%~j9= zn>z6HeE!Eaqh|n{sjk-3fOZQIw`dF_+^^T@rwtW(7Lv_G&3>fhtOTRvxFL#l+mFQt zx#gI3D0SEEjPbB~0bG*?Sja8uz0bP|!Sr!GN?pcxjp zZK#9D=amcgdaE-6P0fTX#X3}<=UHnx+f*V8X?Vx7Ummb2bf9Vu;TW$#{LC7f^?({4^p8IP-X zjZsfyl1geYru%Xryt_C}q8thzpxWG;+W)%S@z9A*vse?eG%1=$EEsTRN57~-_4GYo z)0e->!&xeP&-%u0$DZX~3=7JR>wfzd*ALRCWSsIgwhH4nS~Yy=UnUk-5;3$$dj-ra zt$(X74i6MZ0ll1a9a_{H^>3;bgf|0?*6RFp(}X(Zyfrx?g-&t?GsL76oDEhUuXIwi zY4+_bokY|@bSgVB7-Ed_Q3yG^B5&Xj?w#B!?yUw;Uu&S>0*HV>#2c{;g_o~KO%EiN z7v~J*DcbHz+ZU>y?`7V*5spc8;l@T`s+F39M^YykyT4&SI@I_k2rmKZso9B!$Ub+S z8A#DE*cRLmW~zs_#>DKF)_hx=Ei1vgnF0yWs2E^ zddqj|<2@a|J4>npBJiQj>2{`FEFN6;JfbiT8?63vgj{NeOYvoY4!OV>UbDFnbMhAL z*wf>lZm)tfVipbYEBUiEo)@D#yNk`EP!my#l%4LP12Ii&wcCeYRJrWB@6kHZ7gNoA zP}{!HpLm5gUBRV)cNBC)v{jeKo)Q_1eEHHu7@Z;|f_}NeGaVY-4#>KYR}#Igy?d@1 zb`Wv(&%604kClY6PborG3A8kBFdpL7D5XUft%7ehg7Mue#d)L7gjYM6kPyDsu#opT$5^Ck%V(L0kjzs2) zH!O&P0d6~uF-~POU<%23!wl544lZ5@WlSNy%I*g=i7Rl|DdZ5SMOsX?HBRH*XK^kR zG`Fl*OgA(#2P-9HmBar*OVNN>AzFSIKVv;A1Qy1#Q{>W z5IM(P@ZbF;!o*`^XlYQo2%9GQjqCB<78M9pdyIr?_NkawTIKlKZ@i)R3oqK&Ayi`g z2)nTK^9SWTbdCXGH4}w;J#~>xj0KM5WK^`{3~}yxlyW(3iSf7kCpZnZ(1Vi#&P*VJ zAo%GnjB>vx*GqkLI^ArnbH^DFYRrTRPn$7^(`#FYP>-*%^DT#?)5PJn&*{n5suVe& zE{;r&v&`%0aMEuq?3>YCzF=M5*R&qrfzRxj$a1y&(d0m2ZZVGwNBcrr{L&OYlxMWj z9Xh;gdRU+aSmv0B>9T`fW47q&1!`F}O*TZVAx563ycY0#+9>G|qu%>!Ct>xv8l`>t zZJ9zmlF@fO;EJecM}Fd;fHk!(7bmLdRY`!|&1k{yO(^X45_ybt68@XAeaArq_P6Ow zyP&SLqs>`Tp6)84RI8uPUBOfrPkFLTv4b&srWjJd_PV}OGuM#|Z@NmiWkxKOOgXo@ z!1OB$cm$uYwpQzvS{JJl{ChGQ@y^$u))OwRfd28>o=0V$w zfWnoQ*@`y5xIPfmexV#psAV`XQ|2RWed@Wu+mA3RI1Os*QMJD6BG*ZNraqP3NFW?x zt#y{^YZ$AY!-aKvR2mMGI4!q7+?)v*GOUJU196}7(s$iMoh zR(`VSRz0AN#ID&DJ&KHVU9g-tM0M0Wwiw@br9`mBoxK4y5)^6TRW$gV93WIszTW~oDBCbD>c61%puiUqv;HtgtUQx4W6#Thqb5z7o87&EeqQbwz zGmtu`*Zr-~hpxYC7QxfeKmd9NV!o}E&NUHQUZ6aSJsI;YMTu!*prI-X!rylsTfPW{ zY`DxdRpam2 zjWHKYrpeij4Jliy#vCzi&O!MeqOK-gwv-8aZ`Eld^?qK&1Z1ag+5I0leesr^^xsv+ zN2=;5_pq-}Y3D@-th>ucOEmVjYtT|~7NWB4X`#FR`@-PVx1`?PkzyCWK~gc%SUSW~ zmf>C98V)vHFSRuF2e-lC1amw&dyCRJCSZXY!?V zahI3@If*ptYR%oxd-kyNkTG~GYdy?349%5da zRW;^}sp?O(thae;MF;SpNQog~yXmU7aTsPv;wu*IJKK1pT7Ig|-`)fnK2F^X7n5rA!KSPIX-wP;#gfN=|e7XQ*D_l=}2`7x-%XDQ3B1;p?{ zVZ3pVL=(GGOv{fCjEV|O-cd*{Bp2zhe;zX{(zn*R*S}*Bz%KMe$rJ1bMd&~1?(8#J zG@J1yHnJTwkwT|uX=?Gf8-I6JPSLw};ljCTwRXO10b<=1ZG%{uPZ64wZgjQ3zCv2U z>|A)EO@B$@R?j_|;p3ANcsJ?!0m{7UXaPl&OZLTKaXI1Sd?3@_$O4+E

                                                                  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 Nws1INjQY>`{{sZ!ys`iQ literal 0 HcmV?d00001 diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index d922f2487..fb9526cbd 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -26,11 +26,18 @@ */ - +.index { + background-image: url("./type.jpg"); + background-repeat: no-repeat; + background-attachment: fixed; + background-position: center; + background-size: 50%; +} .heading{ text-align: center; + } @@ -49,13 +56,13 @@ } -/* -.image:before { + +/*.index:before { content: ""; position: fixed; top: 0; left: 0; - background-image: url("./notes.jpg"); + background-image: url("./type.jpg"); width: 100%; height: 100%; opacity : 0.6; diff --git a/app/views/tasklist/index.html.erb b/app/views/tasklist/index.html.erb index 3a46d5e5f..6a9782538 100644 --- a/app/views/tasklist/index.html.erb +++ b/app/views/tasklist/index.html.erb @@ -6,7 +6,6 @@

                                                                    -
                                                                    <%=link_to "Done!",done_task_list_path(task.id),method: :patch%> -
                                                                  <% end %> diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 1dbf28561c47c32d56de2fb904035a6f21f5e4e1..d9f26132f293da806f4b177c741361f53491b0d1 100644 GIT binary patch literal 24576 zcmeI2-*3}a6vwZVHX&8pl)+Y22zRV28hUH(_^Y#HUEazbB^Pfbq#6NLriz zYwFvnYp{zO5tn>v5ZH__YRW znj1~)p=Sn`>-Yl&iEAt6QngIiDvNj5%5<@Ez5FT746B}@%N3d#Xe2|=XPz+62Md|3 zJ(irk42~oNbJJ!6#|{*Xzx1G5y1G>UkH+Z})2lU1k5-new6eCelzk?}le3~Ie03r; z=b4u6Zv>|QXv4Prz~BFUtl!vvnFnIkGk~F5UMR27J1dK~ODpU2R(YM4)~d^k6{vr^ zTmj=R9k@s{ffd*+v+EiZ)FEomYH{Fui)(JPWiwv7;Rj~W_9H}A-!Ox|a*vt8%hEdR z1y+;oHQsLV(r&FNy#?I@26<4H6R?NO%if74W-nY2*1P@l*oF!3hR>(mgRHv#PkOw z{axBhzdQZ&^q24jHza@rkN^@u0!RP}AOR$R1dsp{c#8?FBogGxRH;<1TS0?XndMuy zWjeGRG?>jCQ;}p%lvGjCs3aGqLQ&0M%E`K{=7%dc#}h<^Ht$(BwAG}gx@)%@Z9lq3 zUe$)Q#g)ae1i1ih-EbYZ?J-)~+OkQ^oLVFP05qrPu`#Sru#Vd zWAa(}crO_~-arWGG7>-nNB{{Sfddlw>|~0Zm^<@PsYEJfYn}PN|GsHAT|c08*I{y@ zAc?Xp$~sk)VqPyQIVwtqBn@2t=W8HRUe66)f$u5x6DgvfIzzzLYJ<^j*YhmqU!)zk zO&>Y#_OeHr?Xx}Rqpjo&eTWsVq;8O3Pj{_cGi{sRcAE!nSdpc{b&b${u5^y4$hiXH zsP5RN6VQ3v-G+NG7ai&_>tSQl^?bT%)*jK0>D7T8ED{w&Nu!Ef%p1iVC#Oe~QwjxG zREdhVtL&s^Qe^p5*iARU6rH!8FuLkC*`{0X&~*TK-F40d^cG;G5U%3}doY48;0Qcr zDoI62E9Rw9zUa`q(Y|nn5aEG%Hgp9rbm%8mow;-YZsGK|`FhzFbgEPL`^+1FLgwpb zvRYK&X$&7kNk#Ky)xlUNeR(V5f8D zOc-X@&MO1+X4A4eeF5s>f}o^RIbT%uqB`O%QTQ@d4<=LO?A`#cdWQ|oFti~E zLj`(pH7kapRpC6Gw>&u8t8ioW0t;xnMNPn2_aGJYg=p}xEXoFzbHyC2d1@nukdc#( zTqN620k*%4Oge@l%KRDPl#8l7WW0pSeo{dl9IibDY;7Ge>F~B7M5P%;ggOo$`Y0NC@d<&PV~?~PLc=nT~FCbC61DG02cgi$dGsVh*7{D zbwn>}hN?vS5-MMer^w-wjv`40PdZYbN;=QKkbREEX!zLXV zLTdQ$18%fX!{5+RLnseDIG9(tYoWsD|MB$CB>f`&JAB}V1dsp{Kmter2_OL^fCP{L z5dsr-_hT9A~P*lvjoR{#`E(PxC+5;#Uy-~z-1#1v0IC+XkP z&(kkn>j2R?B!C2v01`j~NB{{S0VIF~kN^@u0&hKmcj8&0fA$}LRkS<(j~$O^Q@x|Y G`TxHZO8B4v literal 32768 zcmeHP&2QVt6{jSBh)HavA3+*qlbv6~f)JN>(l6HrQ zByyfPZ{Ba-*GP}^=!01|bWq)IHLMUx+(|B%<8C0taonfyD#ELC48zG#=K?-+iSvG^ zpK`)KkByCe!3`gO&Xs;rDjt76_KOoQ`u#a;X9zF^7y=9dh5$o=A;1t|2z*r$_=FTj zPYXis$EQMT*>hT!>jg`p6>KbdZV(39>!F+Twdz6*EmYs1t)Yo5c>-OUaP0{+Gq+Hi zuFa!|^E3CW^NZ+SZ4p%;FFcr;gZuB-<`&T019&~2oxOr4LO1lB3AAmsR@ST*G}unC z(sDOL*Ka19SNz7N=g`)rAhg1*pa;>hm#i?=-g2z4-D<;G=r)`r^Q}$V8sF86zUj0A zU`T~>o1xQMbz0@U>EY4SXU^n4aU;w&9UsOOzmKHxi5p)Dm8R7=6ezDFU-{wC$mz?M zbBmE2!G|6!(v||}!!4(|;$$v|Q<7zfm*{A(z@24Su$`y+^rIM?tb$~(zgqfK-W$!2 zp1yW9w|CWT+RjH?O&73U3Rc#fhPBjiS6dcU@1U!p&<6kU+{_1$YhYftYTri_{cfK? z59ZKBS0_{rw?Un$S(Uxq=;^C4kkNSRUpj((YWfFv-ZABUJ1dWYdo7ec<4XT3{T)8o z!4O~wFa#I^3;~7!Lx3T`5MT%}1Q-Gg0fxXEjlju5zAR#*Vp$YLBI*h`nNPG}*}&q- zT&IN?A{JFqI|ecpN`I#7|G&WpI~W2C0fqoWfFZyTUzl z@f6PqlNYX6tK37++C|@UZO2E`P?QqvxZxVAw_K-b2bS0HgAmz%(;$)QKr_@cJBa;_6U_b4n&_|D)6~Aet*{$Zv+LPV` z=-rz}#6El|Wyj#T3l}0WV?GBAZd(o4+f50m>mZ##Fe0icE2boYfOO41@6!87lkwudvUGL3-Ql4o%R~91C7SD>nhKE<4iPwIcswfI0f${;DnLO0u}`#QMHhDlTdx>hLe~C zSBNI-I4f*|VkLK{tg=RpfOUf`tJC$+NOmk0u7AWcx7 z$UJv0=5o{WJapf09JXUZWccPTWeDw#DP>pUxr+wZwzg)7ZhQU?6c)`iQPXi(*OvWO zfR?S54YX^uY+~q!fDJ)Zkcdr1G8LnzrNsx9awWwO)r8aDq!d7z#-_c@RrBv0BlIq+#O+7h!Hm1lWCR!$HeXsk>3Pg7Cf{u7S5iHY6&`Q5;PR zCF!Q3RuoNFamu@6Q!-3RtjMYgb5-!a!*kb_2(>#FI6>QOHk}rV@}0n4_T1)baH~gK zw>**xI#r=jP)Y?zV5pl|sTf4Ux{_a<R zB@@Fu%N0;8L&-oTf|PoNhDn{|KYFLwjwq16y)2*rT9CRK0?`pRU?#vCG8QOC-d#3{ zSb>QU)dSt=qU;q>u^mueA)dss4g4Ksk&;PdQxP-%F2zs<9QWtCi?aPTjVGsGmc&w! ziJ>Xf&*Dx@m8la-W+SQIA&O))Ni-nz!MtEi*PQdkcJ_MoA-rnhGS~1LjsW49&YV^!{O(wtEz+J`w_Tv>s^vD5OS`@(%YfxU z3ZT&WRH)mkCvFa-Vw5jd7FoXN#oUGU$`6@*-N zmxmj4{m+kG=SsgVxusL%pN;=;{N1t7$9@V;>|h8m1Q-Gg0fqoWfFZyTUJ^&%Uq@1&{qHGovHiW$5dU-}JYjAgEfed(KMO`v#T%AfBi*>l9f_ zm{R6PjwEVa<_A@p=~6i8GeNmKd?-=dcgRo#l^I`xGBb1-QQJ3&q)%a`PAT(+LyDTH z4$(wa*A8Z)i*h&r5>Zok$a-RYU6h&JU{O;yh)SYprHew>|KEnP{nF1$Z;k(k)&FM- z89OE*>a701$_*~4N>p>l&v3B%|2|I!u=;;i|DSp4sb^e+;@m_Sh*O9-fJGEm|DSp2 zh}HkI`hQmc&+7li_?r>;JK)8hN_@ zA0B(bmBR7=jQ?ufgj04f1Q-Gg0fqoWfFZyTUuKMrY*mv%w+& diff --git a/log/development.log b/log/development.log index 81ab9d67a..59e0944f7 100644 --- a/log/development.log +++ b/log/development.log @@ -95413,3 +95413,103 @@ Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bd  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Edith Teisilian Ethelena"], ["description", ""], ["created_at", "2016-04-26 01:04:42.310489"], ["updated_at", "2016-04-26 01:04:42.310489"]]  (0.5ms) commit transaction +  (1.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (0.7ms) CREATE TABLE "rails_task_lists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "completion_status" varchar, "completed_at" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer) +  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.3ms) select sqlite_version(*) +  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.1ms) SELECT version FROM "schema_migrations" +  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422212851') +  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419202627') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422204902') +  (0.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.7ms) CREATE TABLE "rails_task_lists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "completion_status" varchar, "completed_at" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer)  +  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) +  (0.1ms) select sqlite_version(*) +  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.1ms) SELECT version FROM "schema_migrations" +  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422212851') +  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419202627') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422204902') + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "The First Task"], ["description", "Get up and dress"], ["completion_status", "almost done"], ["completed_at", "2014-11-16 04:58:34 -0800"], ["created_at", "2016-04-26 01:09:28.557129"], ["updated_at", "2016-04-26 01:09:28.557129"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Brunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:09:28.560851"], ["updated_at", "2016-04-26 01:09:28.560851"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", "With Family"], ["completion_status", "almost done"], ["completed_at", "2004-01-07 12:17:35 -0800"], ["created_at", "2016-04-26 01:09:28.562803"], ["updated_at", "2016-04-26 01:09:28.562803"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:09:28.564613"], ["updated_at", "2016-04-26 01:09:28.564613"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", "with friends"], ["completion_status", "almost done"], ["completed_at", "2008-01-05 07:58:26 -0800"], ["created_at", "2016-04-26 01:09:28.566471"], ["updated_at", "2016-04-26 01:09:28.566471"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", " Or not"], ["completion_status", "almost done"], ["completed_at", "2011-11-09 13:27:44 -0800"], ["created_at", "2016-04-26 01:09:28.568421"], ["updated_at", "2016-04-26 01:09:28.568421"]] +  (1.0ms) commit transaction +  (0.1ms) begin transaction + SQL (0.7ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", "In neighbors back yard"], ["completed_at", "1996-07-10 17:43:20 -0700"], ["created_at", "2016-04-26 01:09:28.573011"], ["updated_at", "2016-04-26 01:09:28.573011"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Call Mom"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:09:28.577253"], ["updated_at", "2016-04-26 01:09:28.577253"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "She worries, you know"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:09:28.579222"], ["updated_at", "2016-04-26 01:09:28.579222"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Nap"], ["description", "Yesss!"], ["completion_status", "almost done"], ["completed_at", "1982-12-12 15:41:41 -0800"], ["created_at", "2016-04-26 01:09:28.580940"], ["updated_at", "2016-04-26 01:09:28.580940"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Honoure Afflect"], ["description", ""], ["created_at", "2016-04-26 01:09:28.589069"], ["updated_at", "2016-04-26 01:09:28.589069"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "William Adolphus"], ["description", ""], ["created_at", "2016-04-26 01:09:28.591749"], ["updated_at", "2016-04-26 01:09:28.591749"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Edith Teisilian Ethelena"], ["description", ""], ["created_at", "2016-04-26 01:09:28.593741"], ["updated_at", "2016-04-26 01:09:28.593741"]] +  (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" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "The First Task"], ["description", "Get up and dress"], ["completion_status", "almost done"], ["completed_at", "1989-06-18 13:39:46 -0700"], ["created_at", "2016-04-26 01:09:45.283183"], ["updated_at", "2016-04-26 01:09:45.283183"]] +  (1.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Brunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:09:45.288639"], ["updated_at", "2016-04-26 01:09:45.288639"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Go to Lunch"], ["description", "With Family"], ["completion_status", "almost done"], ["completed_at", "1976-04-07 15:47:43 -0800"], ["created_at", "2016-04-26 01:09:45.290699"], ["updated_at", "2016-04-26 01:09:45.290699"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go to Second Lunch"], ["description", "With friends"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:09:45.292568"], ["updated_at", "2016-04-26 01:09:45.292568"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Play Video Games"], ["description", "with friends"], ["completion_status", "almost done"], ["completed_at", "1986-01-26 14:24:28 -0800"], ["created_at", "2016-04-26 01:09:45.294439"], ["updated_at", "2016-04-26 01:09:45.294439"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "High Five Somebody You Don't Know"], ["description", " Or not"], ["completion_status", "almost done"], ["completed_at", "1999-09-01 00:06:50 -0700"], ["created_at", "2016-04-26 01:09:45.297020"], ["updated_at", "2016-04-26 01:09:45.297020"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Plant Flowers"], ["description", "In neighbors back yard"], ["completed_at", "1996-09-06 21:58:33 -0700"], ["created_at", "2016-04-26 01:09:45.299937"], ["updated_at", "2016-04-26 01:09:45.299937"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Call Mom"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:09:45.302101"], ["updated_at", "2016-04-26 01:09:45.302101"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "She worries, you know"], ["description", "Or else"], ["completion_status", "almost done"], ["created_at", "2016-04-26 01:09:45.303879"], ["updated_at", "2016-04-26 01:09:45.303879"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "completion_status", "completed_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Nap"], ["description", "Yesss!"], ["completion_status", "almost done"], ["completed_at", "1990-11-17 22:57:23 -0800"], ["created_at", "2016-04-26 01:09:45.305739"], ["updated_at", "2016-04-26 01:09:45.305739"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Honoure Afflect"], ["description", ""], ["created_at", "2016-04-26 01:09:45.313489"], ["updated_at", "2016-04-26 01:09:45.313489"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "William Adolphus"], ["description", ""], ["created_at", "2016-04-26 01:09:45.315465"], ["updated_at", "2016-04-26 01:09:45.315465"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Edith Teisilian Ethelena"], ["description", ""], ["created_at", "2016-04-26 01:09:45.317145"], ["updated_at", "2016-04-26 01:09:45.317145"]] +  (0.7ms) commit transaction From a67be4b228204a0a207df122c6a5bd572a75af5d Mon Sep 17 00:00:00 2001 From: Sarah Date: Mon, 25 Apr 2016 21:19:18 -0700 Subject: [PATCH 16/23] comming along --- app/assets/stylesheets/application.css | 19 ++++++++----------- db/development.sqlite3 | Bin 24576 -> 24576 bytes 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index fb9526cbd..4215cc54a 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -25,24 +25,21 @@ */ - -.index { - background-image: url("./type.jpg"); - background-repeat: no-repeat; - background-attachment: fixed; - background-position: center; - background-size: 50%; +body { + background-color: gray } + .heading{ text-align: center; } -.task_description{ +.task_description li{ font-family: American Typewriter; + color:black; margin: 2rem; width: 15%; display: inline-block; @@ -57,7 +54,7 @@ -/*.index:before { +.index:before { content: ""; position: fixed; top: 0; @@ -65,12 +62,12 @@ background-image: url("./type.jpg"); width: 100%; height: 100%; - opacity : 0.6; + opacity : 100.0; z-index: -1; background-size: cover; background-repeat: repeat; background-attachment: fixed; -}*/ +} diff --git a/db/development.sqlite3 b/db/development.sqlite3 index d9f26132f293da806f4b177c741361f53491b0d1..7718084ad4627e657ca9c8a3e3e0030e76e8c891 100644 GIT binary patch delta 149 zcmZoTz}Rqrae_3X!9*EnMuUwB3-x*VmN0N||6<^;=l;ddx|z@54L5fp6DNbJsxpJ4 zBjaQZdry87D?@WDBO^Tn3o{cV6Q<3vHttL;3=9m3lULZqa#t{OGAJu6+k;fEw@Z)$ us+~ceIqsi delta 142 zcmZoTz}Rqrae_3X?nD`9M%|4G3-x&!7#KKsVj1}B`DOW*Z00j~!_AmBxy{^ua)LYy ztGT6-kAhoQf=7vU=iyRaHP-G;2 From 19cfd771938480aa651402846fdd73d95574c5c7 Mon Sep 17 00:00:00 2001 From: Sarah Date: Mon, 25 Apr 2016 21:34:29 -0700 Subject: [PATCH 17/23] still working --- app/assets/stylesheets/application.css | 8 +- app/views/tasklist/index.html.erb | 20 ++-- db/development.sqlite3 | Bin 24576 -> 24576 bytes log/development.log | 141 +++++++++++++++++++++++++ 4 files changed, 155 insertions(+), 14 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 4215cc54a..bfe9b1315 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -25,9 +25,9 @@ */ -body { - background-color: gray -} + + + @@ -37,7 +37,7 @@ body { } -.task_description li{ +.task_description span{ font-family: American Typewriter; color:black; margin: 2rem; diff --git a/app/views/tasklist/index.html.erb b/app/views/tasklist/index.html.erb index 6a9782538..eefb307c6 100644 --- a/app/views/tasklist/index.html.erb +++ b/app/views/tasklist/index.html.erb @@ -9,32 +9,32 @@ -
                                                                • - <%= link_to task.title, rails_task_list_path(task.id)%> -
                                                                • -
                                                                • + <%= link_to task.title, rails_task_list_path(task.id)%> + + + <%if task.person != nil%> <%=task.person.name%> <%end%> -
                                                                • + -
                                                                • + <%= link_to "Edit task", edit_tasklist_path(task.id)%> -
                                                                • + -
                                                                • + <%= link_to 'Delete',delete_path(task.id), method: :delete, data: { confirm: 'Are you sure?' } %> -
                                                                • + - <%=link_to "Done!",done_task_list_path(task.id),method: :patch%> + <%=link_to "Done!",done_task_list_path(task.id),method: :patch%>
                                                                <% end %> diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 7718084ad4627e657ca9c8a3e3e0030e76e8c891..406f0d93c0716efa0d9185dcde292b617c4f454b 100644 GIT binary patch delta 275 zcmZoTz}Rqrae_3X=|mZ4M$?T6^Yx`gdHI$waPlxR@VD_W@(c6X@b2X`dnww+Dm|E(Y8XFlJ7_$~Kb22C^i`oOtch6TS$ye|xoh)I` yH(A%-RRrWRb3G$Vb2BqzwhBg022EYj$!+#Zlh@n3f}L%wXJTe(ZfU&8K>+~d8$o>l delta 180 zcmZoTz}Rqrae_3X!9*EnMuUwB^Yx`gc=?tvaB%-(;IHTY#m~xT!@HN)kY^iDEZ2(7 zQU=etCv(`yO#WagGdV$?WwNb}Fpr_Rm64I2frXigk;:*e6#L}g`Vdq+ox$#V8$ zlLM@{CtKK?vR5#3G62OVOW8|7#T-QpEvyVJ^~^2IOwA0~>KQp1G Date: Mon, 25 Apr 2016 21:58:19 -0700 Subject: [PATCH 18/23] still working --- app/assets/stylesheets/application.css | 28 +- app/views/tasklist/index.html.erb | 4 + db/development.sqlite3 | Bin 24576 -> 24576 bytes log/development.log | 1070 ++++++++++++++++++++++++ 4 files changed, 1100 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index bfe9b1315..3656724d9 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -70,19 +70,43 @@ } +.more_info:before{ + content: ""; + position: fixed; + top: 0; + left: 0; + background-image: url("./type.jpg"); + width: 100%; + height: 100%; + opacity : 100.0; + z-index: -1; + background-size: cover; + background-repeat: repeat; + background-attachment: fixed; + + +} .more_info{ - background-color: gray; + font-family: American Typewriter; + + background-repeat:no-repeat; text-align: center; text-decoration: none; list-style-type: none; width: 35%; height: 500px; - border-radius: 50px; + border-radius: 500px; margin-left: auto; margin-right: auto; } +.nav { + margin-left: 50%; + +} + + .body { background-color: gray; background-image: url("./notes.jpg"); diff --git a/app/views/tasklist/index.html.erb b/app/views/tasklist/index.html.erb index eefb307c6..8ce6bac50 100644 --- a/app/views/tasklist/index.html.erb +++ b/app/views/tasklist/index.html.erb @@ -39,7 +39,11 @@ <% end %> + +
    diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 406f0d93c0716efa0d9185dcde292b617c4f454b..0db269590ad33a86418d66f78c191bcddeea679a 100644 GIT binary patch delta 68 zcmZoTz}Rqrae_3X%|sbzMw^WZ3-twgVi}lt7#aB6co=#2@*46QZWc1|=3!xAVAkB6 XXmgtp$YS)G>|mG9_-OMAy9h-9R230U delta 68 zcmZoTz}Rqrae_3X=|mZ4M$?T63-ty0mN0PgFf#DB@i6iW^V#t3-7I9_&BGGT!O5^W Y(dITIOBxF&!(<1$bVmNoE9@c^0bh_25dZ)H diff --git a/log/development.log b/log/development.log index 9e2945ef8..08199c18f 100644 --- a/log/development.log +++ b/log/development.log @@ -95654,3 +95654,1073 @@ Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dd Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:33:49 -0700 + + +Started GET "/" for ::1 at 2016-04-25 21:34:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:34:41 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:34:41 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:34:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:34:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:34:41 -0700 + + +Started GET "/assets/application.self-93b406a287d195c9657c1a4f96432d56d287b7dbbbeacd9ff50954b40b4f3618.css?body=1" for ::1 at 2016-04-25 21:34:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:34:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:34:41 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:34:41 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:34:41 -0700 + + +Started GET "/" for ::1 at 2016-04-25 21:34:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:34:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:34:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:34:42 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:34:42 -0700 + + +Started GET "/assets/application.self-93b406a287d195c9657c1a4f96432d56d287b7dbbbeacd9ff50954b40b4f3618.css?body=1" for ::1 at 2016-04-25 21:34:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:34:42 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:34:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:34:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:34:42 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:34:42 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:34:56 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 24ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 21:35:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.5ms) 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", 6]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-25 21:36:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:36:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:36:18 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:36:18 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:36:18 -0700 + + +Started GET "/assets/application.self-93b406a287d195c9657c1a4f96432d56d287b7dbbbeacd9ff50954b40b4f3618.css?body=1" for ::1 at 2016-04-25 21:36:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:36:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:36:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:36:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:36:18 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:36:18 -0700 + + +Started GET "/" for ::1 at 2016-04-25 21:37:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:37:18 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:37:18 -0700 + + +Started GET "/assets/application.self-93b406a287d195c9657c1a4f96432d56d287b7dbbbeacd9ff50954b40b4f3618.css?body=1" for ::1 at 2016-04-25 21:37:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:37:18 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:37:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:37:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:37:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:37:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:37:18 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:37:18 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:37:20 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 21:39:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/application.self-88368ed092006ac18fe34146209dbb5632b06b171d49037d825910f1a3652bc6.css?body=1" for ::1 at 2016-04-25 21:39:17 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:39:17 -0700 + + +Started GET "/" for ::1 at 2016-04-25 21:40:18 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:40:18 -0700 + + +Started GET "/assets/application.self-fa388ccfc6cf71513b6603e1a3f75748420e7b5ea7adb2d55e644148e480d6ea.css?body=1" for ::1 at 2016-04-25 21:40:18 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:40:18 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:40:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:40:18 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:40:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:40:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:40:18 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:40:18 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:40:18 -0700 + + +Started GET "/" for ::1 at 2016-04-25 21:40:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:40:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:40:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:40:45 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:40:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:40:45 -0700 + + +Started GET "/assets/application.self-6c358cc6668a9df68c8fa8d3d2d72723b35b68608e01bd5bab92f5e443e6349e.css?body=1" for ::1 at 2016-04-25 21:40:45 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:40:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:40:45 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:40:45 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:40:45 -0700 + + +Started GET "/" for ::1 at 2016-04-25 21:41:10 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasklist/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:41:10 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:41:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:41:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:41:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:41:10 -0700 + + +Started GET "/assets/application.self-1ed64b24c0df8c0faff38a29f22e959f63ed50995b7f7208e3d471b9176f9eb9.css?body=1" for ::1 at 2016-04-25 21:41:10 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:41:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:41:10 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:41:10 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:41:10 -0700 + + +Started DELETE "/tasklist/21" for ::1 at 2016-04-25 21:41:19 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"9pGjc3v3I40xmLnrODI+CGzV9YhDqClDYlSzVb4106JZ/dNbVmFb633Alj68YD78cUYLXKWo1330ccRabhgA5g==", "id"=>"21"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 21]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 21]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-25 21:41:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Rendered tasklist/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:41:19 -0700 + + +Started DELETE "/tasklist/8" for ::1 at 2016-04-25 21:41:26 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"aD8AMITQeVlzHU8bjBKfixtN6XOR/27X/3GHNjG0lirHU3AYqUYBPz9FYM4IQJ9/Bt4Xp3f/kOlpVPA54ZlFbg==", "id"=>"8"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 8]] +  (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 21:41:26 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Rendered tasklist/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:41:26 -0700 + + +Started DELETE "/tasklist/7" for ::1 at 2016-04-25 21:41:31 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"d8YBfysxytT7m45HJyAb1fs6vtpnx9q/4V5cVjDBAEXYqnFXBqeysrfDoZKjchsh5qlADoHHJIF3eytZ4OzTAQ==", "id"=>"7"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 7]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 7]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-25 21:41:31 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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", 6]] + Rendered tasklist/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:41:31 -0700 + + +Started DELETE "/tasklist/3" for ::1 at 2016-04-25 21:41:33 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"Z6lfg/XphYe2w7KG4/gJ1sxZl4JRAQyizIfZP2nmYhvIxS+r2H/94fqbnVNnqgki0cppVrcB8pxaoq4wucuxXw==", "id"=>"3"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 3]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 3]] +  (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 21:41:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:41:33 -0700 + + +Started DELETE "/tasklist/4" for ::1 at 2016-04-25 21:41:36 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"WxVIMhgBZtQo2TOPyx8WE/cyh2HtXA2cUWNrjqAsH0r0eTgaNZcesmSBHFpPTRbn6qF5tQtc86LHRhyBcAHMDg==", "id"=>"4"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 4]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 4]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-04-25 21:41:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:41:36 -0700 + + +Started DELETE "/tasklist/6" for ::1 at 2016-04-25 21:41:40 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"V6kzFjiKcb8t2zP0QsYQt45i4CCePqbnfFTiocyMizj4xUM+FRwJ2WGDHCHGlBBDk/Ee9Hg+WNnqcZWuHKFYfA==", "id"=>"6"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 6]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 6]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-25 21:41:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:41:40 -0700 + + +Started DELETE "/tasklist/5" for ::1 at 2016-04-25 21:41:42 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"MazEnEQW1tWKOEdRC6fPKopQJGP2jf0/7rB4IvS150qewLS0aYCus8ZgaISP9c/el8PatxCNAwF4lQ8tJJg0Dg==", "id"=>"5"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 5]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 5]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-25 21:41:42 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:41:42 -0700 + + +Started GET "/" for ::1 at 2016-04-25 21:42:13 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:42:13 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:42:13 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:42:13 -0700 + + +Started GET "/assets/application.self-3c5aa7925cce6045f482126181d0ddd7c89cc3ef19d82c6e842632881d69057d.css?body=1" for ::1 at 2016-04-25 21:42:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:42:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:42:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:42:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:42:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:42:13 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:42:13 -0700 + + +Started GET "/" for ::1 at 2016-04-25 21:42:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:42:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:42:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:42:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:42:31 -0700 + + +Started GET "/assets/application.self-a50ffb1f6d73f59a7bff59730c9d87cc05417b2bc0e53495dd0cd7ea27562299.css?body=1" for ::1 at 2016-04-25 21:42:31 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:42:31 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:42:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:42:31 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:42:31 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:42:31 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:42:42 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (2.6ms) +Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 0.6ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:52:47 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:52:47 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:52:47 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:52:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:52:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:52:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:52:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:52:47 -0700 + + +Started GET "/assets/application.self-36f6229ac929c2479a91e16d2752952694fc4a9e12905cfdf27895e16a841da4.css?body=1" for ::1 at 2016-04-25 21:52:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:52:47 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-25 21:52:47 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:53:57 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:53:57 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:53:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:53:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:53:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:53:57 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:53:57 -0700 + + +Started GET "/assets/application.self-844183f6cb520e1fbbda2a88a7db7f608b8bf67abc44c966244c9013c2a09718.css?body=1" for ::1 at 2016-04-25 21:53:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:53:57 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:53:57 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-25 21:53:57 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:54:08 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:54:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:54:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:54:08 -0700 + + +Started GET "/assets/application.self-63523196357a27ca41b86500511716053cedad81b908d8cdfb3268214009ee87.css?body=1" for ::1 at 2016-04-25 21:54:08 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:54:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:54:08 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:54:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:54:08 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:54:08 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-25 21:54:08 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:54:24 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.6ms) +Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:54:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:54:24 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:54:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:54:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:54:24 -0700 + + +Started GET "/assets/application.self-f24b504c792612c1d8177c41462f056fd0a52c8d286191605aa76e3daeded632.css?body=1" for ::1 at 2016-04-25 21:54:24 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:54:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:54:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:54:24 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-25 21:54:24 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:54:37 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:54:37 -0700 + + +Started GET "/assets/application.self-63523196357a27ca41b86500511716053cedad81b908d8cdfb3268214009ee87.css?body=1" for ::1 at 2016-04-25 21:54:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:54:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:54:37 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:54:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:54:37 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:54:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:54:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:54:37 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-25 21:54:37 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:54:54 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.6ms) +Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:54:54 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:54:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:54:54 -0700 + + +Started GET "/assets/application.self-a029ccc4c59be1a6938dd169957a6bc1b94e608055af107e42eeba12411e8cc5.css?body=1" for ::1 at 2016-04-25 21:54:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:54:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:54:54 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:54:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:54:54 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:54:54 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-25 21:54:54 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:55:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:55:05 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:55:05 -0700 + + +Started GET "/assets/application.self-6d38fba4034ac6ee01ecbcfdb3b01611bb9c40fecafe52db22720f71e69d1e0c.css?body=1" for ::1 at 2016-04-25 21:55:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:55:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:55:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:55:05 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:55:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:55:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:55:05 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-25 21:55:05 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:55:24 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:55:24 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:55:24 -0700 + + +Started GET "/assets/application.self-c5613ad5728c48af125aa5a7a0740dfc801ca31a0119dedcf45ba82255d7bca6.css?body=1" for ::1 at 2016-04-25 21:55:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:55:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:55:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:55:24 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:55:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:55:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:55:24 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-25 21:55:24 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:55:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:55:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:55:40 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:55:40 -0700 + + +Started GET "/assets/application.self-6d38fba4034ac6ee01ecbcfdb3b01611bb9c40fecafe52db22720f71e69d1e0c.css?body=1" for ::1 at 2016-04-25 21:55:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:55:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:55:40 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:55:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:55:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:55:40 -0700 + + +Started GET "/assets/note.jpg" for ::1 at 2016-04-25 21:55:40 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:56:17 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:56:17 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:56:17 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:56:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:56:17 -0700 + + +Started GET "/assets/application.self-19e8d43faf277dbc689d63bf2fae6ae97130aba1381428ebc522652868fc25c6.css?body=1" for ::1 at 2016-04-25 21:56:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:56:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:56:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:56:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:56:17 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:56:57 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 26ms (Views: 23.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:56:57 -0700 + + +Started GET "/assets/application.self-736e0d80c83673bb79456ed1d2e793f9817f238a96d83dbdd0813cc45ca24eff.css?body=1" for ::1 at 2016-04-25 21:56:57 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:56:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:56:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:56:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:56:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:56:57 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:56:57 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:56:57 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:56:57 -0700 + + +Started GET "/" for ::1 at 2016-04-25 21:57:22 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:57:22 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:57:26 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 21:57:47 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.7ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:57:47 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:57:47 -0700 + + +Started GET "/assets/application.self-e2eea5d882ab4472c1a5da3e1ee2c6a91b7ef8764b6162dda78af8bf28a18e26.css?body=1" for ::1 at 2016-04-25 21:57:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 21:57:47 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 21:57:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 21:57:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 21:57:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 21:57:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 21:57:47 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 21:57:47 -0700 From 890de9a86fb7701166d7d0a718b227c7c8a5b29c Mon Sep 17 00:00:00 2001 From: Sarah Date: Mon, 25 Apr 2016 22:17:16 -0700 Subject: [PATCH 19/23] comming along --- app/assets/stylesheets/application.css | 12 +- app/views/tasklist/show.erb | 37 +- db/development.sqlite3 | Bin 24576 -> 24576 bytes log/development.log | 1277 ++++++++++++++++++++++++ 4 files changed, 1297 insertions(+), 29 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 3656724d9..878ecb4c4 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -89,16 +89,10 @@ .more_info{ font-family: American Typewriter; + margin-top: 25%; + margin-left: 15%; + text-align: left; - background-repeat:no-repeat; - text-align: center; - text-decoration: none; - list-style-type: none; - width: 35%; - height: 500px; - border-radius: 500px; - margin-left: auto; - margin-right: auto; } .nav { diff --git a/app/views/tasklist/show.erb b/app/views/tasklist/show.erb index 8a15e6e9d..e016591ea 100644 --- a/app/views/tasklist/show.erb +++ b/app/views/tasklist/show.erb @@ -1,30 +1,27 @@ -

    Task List

    -
    - -
  • - <%=@all_tasklist.description%> -
  • +
    -
  • - <%=@all_tasklist.completed_at%> -
  • + Name: + <%if @all_tasklist.person != nil%> + <%=@all_tasklist.person.name%> + <%end%> -
  • - <%if @all_tasklist.person != nil%> - <%=@all_tasklist.person.name%> - <%end%> +
    -
  • -
  • - <%= link_to "home", root_path%> -
  • - + Title: <%=@all_tasklist.title%>
    + + + Description: <%=@all_tasklist.description%> +
    + + + Date Created: <%=@all_tasklist.completed_at%> +
    + +<%= link_to "home", root_path%> <%# I didn't need the each because it only returned one thing and wasn't an array"%> -
    diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 0db269590ad33a86418d66f78c191bcddeea679a..f5ca638a2e525e1c17ac5698397968d4505e5185 100644 GIT binary patch delta 152 zcmZoTz}Rqrae_3X?L--8M%#@E^Y!_~czI$On0Xi(_}h3G`BgUa83gh$F&*EWXmgk; zDM5^rLD`yt!O@Y?JzpU>Bfp>^GcVn#v{E5CC%+^kwOAo7zeu6DG&eW3NYTi^&`j6B gMAyhn!NAnY(9FufT+h"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:00:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:00:19 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:00:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:00:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:00:19 -0700 + + +Started GET "/assets/application.self-e2eea5d882ab4472c1a5da3e1ee2c6a91b7ef8764b6162dda78af8bf28a18e26.css?body=1" for ::1 at 2016-04-25 22:00:19 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:00:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:00:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:00:19 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:00:19 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:05:04 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:05:04 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:05:04 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:05:04 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:05:04 -0700 + + +Started GET "/assets/application.self-e2eea5d882ab4472c1a5da3e1ee2c6a91b7ef8764b6162dda78af8bf28a18e26.css?body=1" for ::1 at 2016-04-25 22:05:04 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:05:04 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:05:04 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:05:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:05:04 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:05:04 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:05:53 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:05:53 -0700 + + +Started GET "/assets/application.self-e2eea5d882ab4472c1a5da3e1ee2c6a91b7ef8764b6162dda78af8bf28a18e26.css?body=1" for ::1 at 2016-04-25 22:05:53 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:05:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:05:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:05:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:05:53 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:05:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:05:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:05:53 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:05:53 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:06:26 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 31ms (Views: 28.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:06:26 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:06:26 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:06:26 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:06:26 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:06:26 -0700 + + +Started GET "/assets/application.self-be7734401f77017dafd341d5fbcea49dc5d469f8040b6f2f4e5c4010f5104433.css?body=1" for ::1 at 2016-04-25 22:06:26 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:06:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:06:26 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:06:26 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:06:26 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:07:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:07:05 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:07:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:07:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:07:05 -0700 + + +Started GET "/assets/application.self-85f884277e2ec98e559019749c0be92a79aa2e95b68b811c49a84a6d8113b2fc.css?body=1" for ::1 at 2016-04-25 22:07:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:07:05 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:07:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:07:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:07:05 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:07:05 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:07:06 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:07:06 -0700 + + +Started GET "/assets/application.self-85f884277e2ec98e559019749c0be92a79aa2e95b68b811c49a84a6d8113b2fc.css?body=1" for ::1 at 2016-04-25 22:07:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:07:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:07:06 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:07:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:07:06 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:07:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:07:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:07:06 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:07:06 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:07:27 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:07:28 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:07:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:07:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:07:28 -0700 + + +Started GET "/assets/application.self-66d21523bcd0b81e9bb34ce5ae327b5d99da4ab396c13693b7397840a265f5eb.css?body=1" for ::1 at 2016-04-25 22:07:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:07:28 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:07:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:07:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:07:28 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:07:28 -0700 + + +Started GET "/" for ::1 at 2016-04-25 22:07:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:07:30 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:07:33 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:08:09 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:08:09 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:08:09 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:08:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:08:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:08:09 -0700 + + +Started GET "/assets/application.self-e4aacab7a27600c799287a1b0b55fa5cfa00313707d1c121324f0290e491f36c.css?body=1" for ::1 at 2016-04-25 22:08:09 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:08:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:08:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:08:09 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:08:09 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:08:19 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:08:19 -0700 + + +Started GET "/assets/application.self-ad88d340b645c42e194384433fa7d5bae368e2865e68c2b6b6f2dc75befb4ff7.css?body=1" for ::1 at 2016-04-25 22:08:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:08:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:08:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:08:19 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:08:19 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:08:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:08:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:08:19 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:08:19 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:08:44 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:08:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:08:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:08:44 -0700 + + +Started GET "/assets/application.self-d72fa7cc80ee0fbd8a195d3e06c76d78403b092a8bade4794f292bdbd444e3c7.css?body=1" for ::1 at 2016-04-25 22:08:44 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:08:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:08:44 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:08:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:08:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:08:44 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:08:44 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:08:50 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:08:50 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:08:50 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:08:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:08:50 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:08:50 -0700 + + +Started GET "/assets/application.self-de8441fb1a615d6427c7bd074c645d639bb8964f91a489fae2dd4300c746bf77.css?body=1" for ::1 at 2016-04-25 22:08:50 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:08:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:08:50 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:08:50 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:08:50 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:09:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:09:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:09:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:09:05 -0700 + + +Started GET "/assets/application.self-d7935a24f6b198db0324b82500469dbd9fa44ed2f6506e5858719166f83646c0.css?body=1" for ::1 at 2016-04-25 22:09:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:09:05 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:09:05 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:09:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:09:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:09:05 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:09:05 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:09:13 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:09:13 -0700 + + +Started GET "/assets/application.self-91d23c5e74eedcca73494d70a9579af8e1ba71365992c832e862cc8bc3e724eb.css?body=1" for ::1 at 2016-04-25 22:09:13 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:09:13 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:09:13 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:09:13 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:09:13 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:09:13 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:09:13 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:09:13 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:09:13 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:09:48 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:09:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:09:48 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:09:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:09:48 -0700 + + +Started GET "/assets/application.self-91d23c5e74eedcca73494d70a9579af8e1ba71365992c832e862cc8bc3e724eb.css?body=1" for ::1 at 2016-04-25 22:09:48 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:09:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:09:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:09:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:09:48 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:09:48 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:09:59 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.0ms) +Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:09:59 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:09:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:09:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:09:59 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:09:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:09:59 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:09:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:09:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:09:59 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:09:59 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:10:14 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:10:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:10:14 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:10:14 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:10:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:10:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:10:14 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:10:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:10:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:10:14 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:10:14 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:10:28 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:10:28 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:10:28 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:10:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:10:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:10:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:10:28 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:10:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:10:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:10:28 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:10:28 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:10:45 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:10:45 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:10:45 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:10:45 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:10:45 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:10:45 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:10:45 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:10:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:10:45 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:10:45 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:10:45 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:11:25 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (2.2ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:11:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:11:25 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:11:25 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:11:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:11:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:11:25 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:11:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:11:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:11:25 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:11:25 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:11:47 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:11:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:11:47 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:11:47 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:11:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:11:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:11:47 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:11:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:11:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:11:47 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:11:47 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:12:03 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:12:03 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:12:03 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:12:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:12:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:12:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:12:03 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:12:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:12:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:12:03 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:12:03 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:12:12 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:12:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:12:12 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:12:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:12:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:12:12 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:12:12 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:12:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:12:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:12:12 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:12:12 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:12:33 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (2.7ms) +Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:12:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:12:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:12:33 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:12:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:12:33 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:12:33 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:12:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:12:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:12:33 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:12:33 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:12:48 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:12:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:12:48 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:12:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:12:48 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:12:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:12:48 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:12:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:12:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:12:48 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:12:48 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:12:59 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:12:59 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:12:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:12:59 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:12:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:12:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:12:59 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:12:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:12:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:12:59 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:12:59 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:13:42 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:13:42 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:13:42 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:13:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:13:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:13:42 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:13:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:13:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:13:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:13:42 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:13:42 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:13:57 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:13:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:13:57 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:13:57 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:13:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:13:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:13:57 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:13:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:13:57 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:13:57 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:13:57 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:14:04 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:14:04 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:14:04 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:14:04 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:14:04 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:14:04 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:14:04 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:14:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:14:04 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:14:04 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:14:04 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:14:25 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:14:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:14:25 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:14:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:14:25 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:14:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:14:25 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:14:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:14:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:14:25 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:14:25 -0700 + + +Started GET "/" for ::1 at 2016-04-25 22:14:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:14:38 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-25 22:14:40 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 22:15:33 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.7ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-25 22:15:36 -0700 +Processing by TasklistController#new as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (20.1ms) +Completed 200 OK in 35ms (Views: 34.3ms | ActiveRecord: 0.1ms) + + +Started POST "/tasklist" for ::1 at 2016-04-25 22:16:07 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"J6PQhTfYBjmqvz+Hjo4tcWjU/vp9C07dNs+lDb849daIz6CtGk5+X+bnEFIK3C2FdUcALpsLsOOg6tICbxUmkg==", "rails_task_list"=>{"title"=>"Go Shopping", "description"=>"Buy clothes for summer!", "person_id"=>"3"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "rails_task_lists" ("title", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Go Shopping"], ["description", "Buy clothes for summer!"], ["person_id", 3], ["created_at", "2016-04-26 05:16:07.926563"], ["updated_at", "2016-04-26 05:16:07.926563"]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-25 22:16:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:16:08 -0700 + + +Started GET "/tasklist/22" for ::1 at 2016-04-25 22:16:14 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:16:14 -0700 + + +Started GET "/tasklist/22" for ::1 at 2016-04-25 22:16:31 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:16:31 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:16:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:16:31 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:16:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:16:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:16:31 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:16:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:16:31 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:16:31 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:16:31 -0700 + + +Started GET "/" for ::1 at 2016-04-25 22:16:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:16:52 -0700 From 876985ad235afe9a7b2abb4429378715a022e957 Mon Sep 17 00:00:00 2001 From: Sarah Date: Mon, 25 Apr 2016 22:55:16 -0700 Subject: [PATCH 20/23] still working' --- app/assets/stylesheets/application.css | 29 + app/views/tasklist/new.erb | 25 +- log/development.log | 2577 ++++++++++++++++++++++++ 3 files changed, 2620 insertions(+), 11 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 878ecb4c4..e0fbae9c4 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -69,6 +69,23 @@ background-attachment: fixed; } +.form:before { + content: ""; + position: fixed; + top: 0; + left: 0; + background-image: url("./type.jpg"); + width: 100%; + height: 100%; + opacity : 100.0; + z-index: -1; + background-size: cover; + background-repeat: repeat; + background-attachment: fixed; + +} + + .more_info:before{ content: ""; @@ -101,7 +118,19 @@ } +.form{ + margin-left: 20%; + margin-top: 17%; + font-family: American Typewriter; +} + + .body { background-color: gray; background-image: url("./notes.jpg"); } + +.text_box{ + + background: rgba(0, 0, 0, 0.4); +} diff --git a/app/views/tasklist/new.erb b/app/views/tasklist/new.erb index 8c26b4987..9fab6cf06 100644 --- a/app/views/tasklist/new.erb +++ b/app/views/tasklist/new.erb @@ -1,12 +1,15 @@ -

    New Form

    -<%= form_for @tasklist do |f| %> -<%= f.text_field :title %> - <%= f.label :title %> - <%= f.text_field :description %> - <%= f.label :description %> - <%= f.label :Person %> - <%= f.select "person_id", options_from_collection_for_select( @all_people , "id", "name"), :include_blank => true %>
    - <%= f.submit %> -<% end %> -<%= link_to "home", root_path% +
    + <%=form_for @tasklist do |f| %>
    + Title:<%= f.text_field :title %>
    + <% f.label :title %>
    + Description:<%= f.text_field :description %>
    + <% f.label :description %>
    + <%f.label :Person %>
    + Name:<%= f.select "person_id", + options_from_collection_for_select( @all_people , "id", "name"), :include_blank => true %>

    + <%= f.submit %>

    + <% end %> + <%= link_to "home", root_path%> + +
    diff --git a/log/development.log b/log/development.log index 590a137b2..27114ace4 100644 --- a/log/development.log +++ b/log/development.log @@ -98001,3 +98001,2580 @@ Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.3ms) Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:16:52 -0700 + + +Started GET "/tasklist/2" for ::1 at 2016-04-25 22:17:44 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-25 22:17:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:17:57 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.4ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:18:20 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:18:20 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:18:20 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:18:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:18:20 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:18:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:18:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:18:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:18:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:18:20 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:18:35 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.3ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:18:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:18:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:18:35 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:18:35 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:18:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:18:35 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:18:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:18:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:18:35 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:19:12 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.0ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:19:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:19:12 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:19:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:19:12 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:19:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:19:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:19:12 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:19:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:19:12 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:19:34 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:19:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:19:34 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:19:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:19:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:19:34 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:19:34 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:19:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:19:34 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:19:34 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:19:40 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:19:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:19:40 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:19:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:19:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:19:40 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:19:40 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:19:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:19:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:19:40 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:22:44 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.0ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:22:44 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:22:44 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:22:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:22:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:22:44 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:22:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:22:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:22:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:22:44 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:23:57 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:23:57 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:23:57 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:23:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:23:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:23:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:23:57 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:23:57 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:23:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:23:57 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:24:25 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Rendered tasklist/new.erb within layouts/application (5.6ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +ArgumentError - wrong number of arguments (given 0, expected 1..3): + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1649:in `label' + app/views/tasklist/new.erb:8:in `block in _app_views_tasklist_new_erb___2067343922849833414_70093846804160' + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___2067343922849833414_70093846804160' + 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/sakne/.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/tasklist_controller.rb:26: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 `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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f9bd641795eeea69/variables" for ::1 at 2016-04-25 22:24:25 -0700 + Person Load (0.2ms) SELECT "people".* FROM "people" + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:24:32 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:24:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:24:32 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:24:32 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:24:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:24:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:24:32 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:24:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:24:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:24:32 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:25:03 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Rendered tasklist/new.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ArgumentError - wrong number of arguments (given 0, expected 1..2): + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1322:in `text_field' + app/views/tasklist/new.erb:6:in `block in _app_views_tasklist_new_erb___2067343922849833414_70093864650240' + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___2067343922849833414_70093864650240' + 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/sakne/.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/tasklist_controller.rb:26: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 `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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3e7d63cd59e9cbcf/variables" for ::1 at 2016-04-25 22:25:03 -0700 + Person Load (0.6ms) SELECT "people".* FROM "people" + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:25:25 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Rendered tasklist/new.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ArgumentError - wrong number of arguments (given 0, expected 1..2): + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1322:in `text_field' + app/views/tasklist/new.erb:6:in `block in _app_views_tasklist_new_erb___2067343922849833414_70093875418700' + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___2067343922849833414_70093875418700' + 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/sakne/.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/tasklist_controller.rb:26: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 `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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4d33ac3ea5e4e413/variables" for ::1 at 2016-04-25 22:25:25 -0700 + Person Load (0.2ms) SELECT "people".* FROM "people" + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:25:26 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Rendered tasklist/new.erb within layouts/application (2.1ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ArgumentError - wrong number of arguments (given 0, expected 1..2): + actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1322:in `text_field' + app/views/tasklist/new.erb:6:in `block in _app_views_tasklist_new_erb___2067343922849833414_70093875418700' + 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/tasklist/new.erb:3:in `_app_views_tasklist_new_erb___2067343922849833414_70093875418700' + 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/sakne/.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/tasklist_controller.rb:26: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 `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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c5d33c11355b3d79/variables" for ::1 at 2016-04-25 22:25:26 -0700 + Person Load (0.4ms) SELECT "people".* FROM "people" + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:25:43 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:25:43 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:25:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:25:43 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:25:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:25:43 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:25:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:25:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:25:43 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:25:43 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:26:39 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:26:39 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:26:39 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:26:39 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:26:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:26:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:26:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:26:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:26:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:26:39 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:26:58 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:26:58 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:26:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:26:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:26:58 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:26:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:26:58 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:26:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:26:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:26:58 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:27:07 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:27:07 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:27:07 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:27:07 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:27:07 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:27:07 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:27:07 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:27:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:27:07 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:27:07 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:27:15 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.6ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:27:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:27:15 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:27:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:27:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:27:15 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:27:15 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:27:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:27:15 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:27:15 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:27:51 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:27:51 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:27:51 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:27:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:27:51 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:27:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:27:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:27:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:27:51 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:27:51 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:28:17 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:28:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:28:17 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:28:17 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:28:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:28:17 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:28:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:28:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:28:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:28:17 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:28:44 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.0ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:28:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:28:44 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:28:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:28:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:28:44 -0700 + + +Started GET "/assets/application.self-75cbb4c0f67743dd2ccd1dedad3a9972ccc72c4641482e4c99058a800eaa9e23.css?body=1" for ::1 at 2016-04-25 22:28:44 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:28:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:28:44 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:28:44 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:31:07 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.4ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:31:07 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:31:07 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:31:07 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:31:07 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:31:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:31:07 -0700 + + +Started GET "/assets/application.self-92f2f11470ba2d6797c075a1aee5355b4bd27503749f7b34ce21d2acab28e869.css?body=1" for ::1 at 2016-04-25 22:31:07 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:31:07 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:31:07 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:31:08 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:31:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:31:08 -0700 + + +Started GET "/assets/application.self-92f2f11470ba2d6797c075a1aee5355b4bd27503749f7b34ce21d2acab28e869.css?body=1" for ::1 at 2016-04-25 22:31:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:31:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:31:08 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:31:08 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:31:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:31:08 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:31:08 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:31:35 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:31:35 -0700 + + +Started GET "/assets/application.self-92f2f11470ba2d6797c075a1aee5355b4bd27503749f7b34ce21d2acab28e869.css?body=1" for ::1 at 2016-04-25 22:31:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:31:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:31:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:31:35 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:31:35 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:31:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:31:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:31:35 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:31:35 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:35:38 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.0ms) +Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:35:38 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:35:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:35:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:35:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:35:38 -0700 + + +Started GET "/assets/application.self-7b790f873e84927c0b1858f6f395863358f89b6538c080f605fbea4a2705f06c.css?body=1" for ::1 at 2016-04-25 22:35:38 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:35:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:35:38 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:35:38 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:35:38 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:35:39 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:35:39 -0700 + + +Started GET "/assets/application.self-7b790f873e84927c0b1858f6f395863358f89b6538c080f605fbea4a2705f06c.css?body=1" for ::1 at 2016-04-25 22:35:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:35:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:35:39 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:35:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:35:39 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:35:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:35:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:35:39 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:35:39 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:41:08 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Rendered tasklist/new.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected ':', expecting ')' +....text_field ; background-color: transparent; :description );... +... ^: + app/views/tasklist/new.erb:6: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/sakne/.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/tasklist_controller.rb:26: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/df2ca45575b77e96/variables" for ::1 at 2016-04-25 22:41:08 -0700 + Person Load (0.4ms) SELECT "people".* FROM "people" + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-25 22:41:25 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.1ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:41:25 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:41:25 -0700 + + +Started GET "/assets/application.self-7b790f873e84927c0b1858f6f395863358f89b6538c080f605fbea4a2705f06c.css?body=1" for ::1 at 2016-04-25 22:41:25 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:41:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:41:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:41:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:41:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:41:25 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:41:25 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:41:25 -0700 + + +Started GET "/" for ::1 at 2016-04-25 22:41:38 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:41:38 -0700 + + +Started GET "/" for ::1 at 2016-04-25 22:42:21 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:42:21 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:42:21 -0700 + + +Started GET "/assets/application.self-0bd45c43b3255629b4d3bc79d743f3ff0c88685260e14a992679639a98591ff9.css?body=1" for ::1 at 2016-04-25 22:42:21 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:42:21 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:42:21 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:42:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:42:21 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:42:21 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:42:21 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:42:21 -0700 + + +Started GET "/" for ::1 at 2016-04-25 22:42:36 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:42:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:42:36 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:42:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:42:36 -0700 + + +Started GET "/assets/application.self-7b790f873e84927c0b1858f6f395863358f89b6538c080f605fbea4a2705f06c.css?body=1" for ::1 at 2016-04-25 22:42:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:42:36 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:42:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:42:36 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:42:36 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:42:36 -0700 + + +Started GET "/" for ::1 at 2016-04-25 22:42:56 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 32ms (Views: 30.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:42:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:42:56 -0700 + + +Started GET "/assets/application.self-0aef251a0ebb89275e786daa9fc660ad488343a5716bfd8e4011fca759297b1f.css?body=1" for ::1 at 2016-04-25 22:42:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:42:56 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:42:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:42:56 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:42:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:42:56 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:42:56 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:42:56 -0700 + + +Started GET "/" for ::1 at 2016-04-25 22:42:58 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:42:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:42:58 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:42:58 -0700 + + +Started GET "/assets/application.self-0aef251a0ebb89275e786daa9fc660ad488343a5716bfd8e4011fca759297b1f.css?body=1" for ::1 at 2016-04-25 22:42:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:42:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:42:58 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:42:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:42:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:42:58 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:42:58 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:43:20 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-25 22:43:20 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:43:20 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:43:29 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (5.5ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:43:29 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.5ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:43:29 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:44:23 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.6ms) +Completed 200 OK in 33ms (Views: 31.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:44:23 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:44:23 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:44:23 -0700 + + +Started GET "/assets/application.self-398ff361654a94e8bb2ce0c5b96e05308a65b0892a333e872b4e508964ffc470.css?body=1" for ::1 at 2016-04-25 22:44:23 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:44:23 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:44:23 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:44:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:44:23 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:44:23 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:44:23 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:44:37 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.4ms) +Completed 200 OK in 29ms (Views: 27.6ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:44:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:44:37 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:44:37 -0700 + + +Started GET "/assets/application.self-a06fc3501cdb9277c4ffc0b0aa4c326e7349c142783d1a40ea8ba686ddf77568.css?body=1" for ::1 at 2016-04-25 22:44:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:44:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:44:37 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:44:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:44:37 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:44:37 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:44:37 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:45:05 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.6ms) +Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:45:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:45:05 -0700 + + +Started GET "/assets/application.self-de4d12749c2521fddb25e258fda326042b8e034cb582318830a4898c0d67bf14.css?body=1" for ::1 at 2016-04-25 22:45:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:45:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:45:05 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:45:05 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:45:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:45:06 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:45:06 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:45:06 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:45:41 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.3ms) +Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:45:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:45:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:45:41 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:45:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:45:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:45:41 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:45:41 -0700 + + +Started GET "/assets/application.self-c1f202d19c68f42dc8165f44a87e5038407ee91834ccdaa9894c5815b0e6ad3a.css?body=1" for ::1 at 2016-04-25 22:45:41 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:45:41 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:45:41 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:45:48 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.0ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:45:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:45:48 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:45:48 -0700 + + +Started GET "/assets/application.self-a2c79ecde1f8619dee74982cc2a889df3edf859f5e2b04add23e952f09b2a060.css?body=1" for ::1 at 2016-04-25 22:45:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:45:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:45:48 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:45:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:45:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:45:48 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:45:48 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:46:11 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:46:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:46:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:46:11 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:46:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:46:11 -0700 + + +Started GET "/assets/application.self-a2c79ecde1f8619dee74982cc2a889df3edf859f5e2b04add23e952f09b2a060.css?body=1" for ::1 at 2016-04-25 22:46:11 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:46:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:46:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:46:11 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:46:11 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:46:23 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.6ms) +Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:46:23 -0700 + + +Started GET "/assets/application.self-a2c79ecde1f8619dee74982cc2a889df3edf859f5e2b04add23e952f09b2a060.css?body=1" for ::1 at 2016-04-25 22:46:24 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:46:24 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:46:24 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:46:24 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:46:24 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:46:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:46:24 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:46:24 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:46:24 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:46:54 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/new.erb within layouts/application (1.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected ',', expecting &. or :: or '[' or '.' + ( @all_people , "id", "name"), :include_blank => t... + ^ +/Users/sakne/C5/projects/TaskListRails/app/views/tasklist/new.erb:10: syntax error, unexpected ',', expecting ')' +... ( @all_people , "id", "name"), :include_blank => true );@ou... +... ^: + app/views/tasklist/new.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/sakne/.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/tasklist_controller.rb:26: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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b4cbb82df96502d6/variables" for ::1 at 2016-04-25 22:46:54 -0700 + Person Load (0.5ms) SELECT "people".* FROM "people" + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:47:17 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.1ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:47:17 -0700 + + +Started GET "/assets/application.self-a2c79ecde1f8619dee74982cc2a889df3edf859f5e2b04add23e952f09b2a060.css?body=1" for ::1 at 2016-04-25 22:47:17 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:47:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:47:17 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:47:17 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:47:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:47:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:47:17 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:47:17 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:47:17 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:47:28 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.0ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:47:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:47:28 -0700 + + +Started GET "/assets/application.self-a2c79ecde1f8619dee74982cc2a889df3edf859f5e2b04add23e952f09b2a060.css?body=1" for ::1 at 2016-04-25 22:47:28 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:47:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:47:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:47:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:47:28 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:47:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:47:28 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:47:28 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:47:58 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.7ms) +Completed 200 OK in 36ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:47:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:47:59 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:47:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:47:59 -0700 + + +Started GET "/assets/application.self-92bbcc4c0f43a089124a74a86e9acd808eeb71965f2bfdf5f89d6e3f1bac3bec.css?body=1" for ::1 at 2016-04-25 22:47:59 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:47:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:47:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:47:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:47:59 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:47:59 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:51:33 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:51:33 -0700 + + +Started GET "/assets/application.self-92bbcc4c0f43a089124a74a86e9acd808eeb71965f2bfdf5f89d6e3f1bac3bec.css?body=1" for ::1 at 2016-04-25 22:51:33 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:51:33 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:51:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:51:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:51:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:51:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:51:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:51:33 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:51:33 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:52:03 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:52:03 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:52:03 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:52:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:52:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:52:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:52:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:52:03 -0700 + + +Started GET "/assets/application.self-92bbcc4c0f43a089124a74a86e9acd808eeb71965f2bfdf5f89d6e3f1bac3bec.css?body=1" for ::1 at 2016-04-25 22:52:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:52:03 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:52:03 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:52:05 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.5ms) +Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:52:05 -0700 + + +Started GET "/assets/application.self-92bbcc4c0f43a089124a74a86e9acd808eeb71965f2bfdf5f89d6e3f1bac3bec.css?body=1" for ::1 at 2016-04-25 22:52:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:52:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:52:05 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:52:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:52:05 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:52:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:52:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:52:05 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:52:05 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:52:57 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.3ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:52:57 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:52:57 -0700 + + +Started GET "/assets/application.self-a62f07cb82b51d66ebba0b7632fb308a27ea343e0c6d32b14187999db0633f62.css?body=1" for ::1 at 2016-04-25 22:52:57 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:52:57 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:52:57 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:52:57 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:52:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:52:57 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:52:57 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:52:57 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:52:58 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:52:58 -0700 + + +Started GET "/assets/application.self-a62f07cb82b51d66ebba0b7632fb308a27ea343e0c6d32b14187999db0633f62.css?body=1" for ::1 at 2016-04-25 22:52:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:52:58 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:52:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:52:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:52:58 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:52:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:52:58 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:52:58 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:52:58 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:53:46 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:53:46 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:53:46 -0700 + + +Started GET "/assets/application.self-a62f07cb82b51d66ebba0b7632fb308a27ea343e0c6d32b14187999db0633f62.css?body=1" for ::1 at 2016-04-25 22:53:46 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:53:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:53:46 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:53:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:53:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:53:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:53:46 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:53:46 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:53:47 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.2ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:53:47 -0700 + + +Started GET "/assets/application.self-a62f07cb82b51d66ebba0b7632fb308a27ea343e0c6d32b14187999db0633f62.css?body=1" for ::1 at 2016-04-25 22:53:47 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:53:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:53:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:53:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:53:47 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:53:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:53:47 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:53:47 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:53:47 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:53:47 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:53:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:53:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:53:48 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:53:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:53:48 -0700 + + +Started GET "/assets/application.self-a62f07cb82b51d66ebba0b7632fb308a27ea343e0c6d32b14187999db0633f62.css?body=1" for ::1 at 2016-04-25 22:53:48 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:53:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:53:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:53:48 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:53:48 -0700 + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-25 22:54:01 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:54:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 22:54:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 22:54:01 -0700 + + +Started GET "/assets/application.self-a62f07cb82b51d66ebba0b7632fb308a27ea343e0c6d32b14187999db0633f62.css?body=1" for ::1 at 2016-04-25 22:54:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 22:54:01 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 22:54:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 22:54:01 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:54:01 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 22:54:01 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:54:01 -0700 From 04705f8f329cef2338458cff6ae07479d006a87d Mon Sep 17 00:00:00 2001 From: Sarah Date: Tue, 26 Apr 2016 08:44:11 -0700 Subject: [PATCH 21/23] more changes --- app/assets/stylesheets/application.css | 37 +- app/controllers/tasklist_controller.rb | 2 +- app/views/people/all_tasklist.erb | 10 +- app/views/tasklist/index.html.erb | 1 - app/views/tasklist/show.erb | 2 + db/development.sqlite3 | Bin 24576 -> 24576 bytes log/development.log | 2116 ++++++++++++++++++++++++ 7 files changed, 2161 insertions(+), 7 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index e0fbae9c4..efb2900e0 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -36,11 +36,17 @@ } +.index{ + margin-top: 18%; + margin-left: 15%; + position: relative; +} + .task_description span{ font-family: American Typewriter; color:black; - margin: 2rem; + margin: 1.2rem; width: 15%; display: inline-block; list-style-type: none; @@ -114,7 +120,7 @@ .nav { margin-left: 50%; - + font-family: American Typewriter; } @@ -134,3 +140,30 @@ background: rgba(0, 0, 0, 0.4); } + + + +.done:before{ + content: ""; + position: fixed; + top: 0; + left: 0; + background-image: url("./type.jpg"); + width: 100%; + height: 100%; + opacity : 100.0; + z-index: -1; + background-size: cover; + background-repeat: repeat; + background-attachment: fixed; + +} + + +.done{ + + margin-left: 20%; + margin-top: 17%; + font-family: American Typewriter; + +} diff --git a/app/controllers/tasklist_controller.rb b/app/controllers/tasklist_controller.rb index 7dadc97ba..7371027df 100644 --- a/app/controllers/tasklist_controller.rb +++ b/app/controllers/tasklist_controller.rb @@ -15,7 +15,7 @@ def new def finished @tasklist = RailsTaskList.find(params[:id]) - @tasklist.update(completion_status: "done") + @tasklist.update(completion_status: "Done!") redirect_to root_path end diff --git a/app/views/people/all_tasklist.erb b/app/views/people/all_tasklist.erb index 49fa3c1ee..09b3453fb 100644 --- a/app/views/people/all_tasklist.erb +++ b/app/views/people/all_tasklist.erb @@ -1,15 +1,19 @@ -

    list of tasks

    +
    -

    Not Done!

    + + +

    Not Done

    <%@list.each do |task|%>
  • <%=task.title%>
  • <%end%> -

    Done

    +

    Done!

    <%@done_list.each do |task|%>
  • <%=task.title%>
  • <%end%> + +
    diff --git a/app/views/tasklist/index.html.erb b/app/views/tasklist/index.html.erb index 8ce6bac50..55a23591d 100644 --- a/app/views/tasklist/index.html.erb +++ b/app/views/tasklist/index.html.erb @@ -42,7 +42,6 @@ diff --git a/app/views/tasklist/show.erb b/app/views/tasklist/show.erb index e016591ea..e1f5dc3b8 100644 --- a/app/views/tasklist/show.erb +++ b/app/views/tasklist/show.erb @@ -21,6 +21,8 @@ Date Created: <%=@all_tasklist.completed_at%>
    + Completion Status: <%=@all_tasklist.completion_status%>

    + <%= link_to "home", root_path%> <%# I didn't need the each because it only returned one thing and wasn't an array"%> diff --git a/db/development.sqlite3 b/db/development.sqlite3 index f5ca638a2e525e1c17ac5698397968d4505e5185..a10756aa8cb93ccee37b92aff23e573608b28157 100644 GIT binary patch delta 202 zcmZoTz}Rqrae_3X%S0JxMwg8V^YsNKczI$On0Xi(_}h3G`IY$gY!)yG;9)$vIngGX zsXk4DlR?#5oWaqN(J>`O!7sI3AtbRl+buIMMWHw&KebpPEx$;iEHOE;Br`wHB|k4! z(a6BiOxM6f*T_u4(A3J<(8}0I&(gr$($Eq^#?(L$C}C`wB*w|0Zp{F)C8Q{`K%pdG iAs{icsMu+;wY@bz$P^PRQ$sy7OJj30!_BSs)d~RW`7_r5 delta 190 zcmZoTz}Rqrae_3X?L--8M%#@E^YsPAczI$On0Xi(_}h3G`BiugHwzd9@Gu_VoM;ox zRPV?bTu_vmm#*Mcl$w|wQj}SsP@Y+mp^%oCo0(IYlAo7qWMF8fYha>lWTs$XVr67# zWn!vlVr*z>ZjK>iYN=;xY-DI)%v#9I$)Kz(YVYXC=$@}olCO{;1{APnV1Nh&XXF"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.9ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/1/edit" for ::1 at 2016-04-25 22:55:37 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 22:55:37 -0700 + + +Started GET "/people" for ::1 at 2016-04-25 22:55:58 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.1ms) + + +Started GET "/people" for ::1 at 2016-04-25 22:55:58 -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 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-25 22:56:00 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (1.5ms) +Completed 200 OK in 26ms (Views: 15.9ms | ActiveRecord: 0.4ms) + + +Started GET "/people/5/all_tasklist" for ::1 at 2016-04-25 22:56:05 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"5"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 5]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 5]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 5], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-25 23:09:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:09:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:09:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:09:14 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:09:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:09:14 -0700 + + +Started GET "/assets/application.self-b9aed940dfd7e563710194c0ba3b725aab2cbd4351c3b65c0ef04125d713fc6a.css?body=1" for ::1 at 2016-04-25 23:09:14 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:09:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:09:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:09:14 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:09:14 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:09:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 33ms (Views: 31.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:09:40 -0700 + + +Started GET "/assets/application.self-98c7bd01b995202b2a7cfb601d9b954803305cc2092d32b7a5932f6b4b901012.css?body=1" for ::1 at 2016-04-25 23:09:40 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:09:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:09:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:09:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:09:40 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:09:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:09:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:09:40 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:09:40 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:09:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:09:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:09:52 -0700 + + +Started GET "/assets/application.self-904411d4a1a88006ae5ce480bd78f91d9105fa9789e25376a22b8aff89fad5ae.css?body=1" for ::1 at 2016-04-25 23:09:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:09:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:09:52 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:09:52 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:09:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:09:52 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:09:52 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:09:52 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:10:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:10:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:10:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:10:05 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:10:05 -0700 + + +Started GET "/assets/application.self-b9aed940dfd7e563710194c0ba3b725aab2cbd4351c3b65c0ef04125d713fc6a.css?body=1" for ::1 at 2016-04-25 23:10:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:10:05 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:10:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:10:05 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:10:05 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:10:05 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:11:27 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 37ms (Views: 36.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:11:27 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:11:27 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:11:27 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:11:27 -0700 + + +Started GET "/assets/application.self-5eaa6c16f73929b08684ea76e3a5578ced91f149d15eb6b8b76cff633b928021.css?body=1" for ::1 at 2016-04-25 23:11:27 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:11:27 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:11:27 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:11:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:11:27 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:11:27 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:11:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 38ms (Views: 36.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:11:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:11:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:11:39 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:11:39 -0700 + + +Started GET "/assets/application.self-eefa06d48576fe48b8dfacb65da0c0e3874b2cd9d000f29815c88241d331d8a8.css?body=1" for ::1 at 2016-04-25 23:11:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:11:39 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:11:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:11:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:11:39 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:11:39 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:11:49 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:11:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:11:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:11:49 -0700 + + +Started GET "/assets/application.self-fcdc95f19a85dd4fc59591832b1b19083123bf56215835785f0869a69dee954d.css?body=1" for ::1 at 2016-04-25 23:11:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:11:49 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:11:49 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:11:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:11:49 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:11:49 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:11:49 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:11:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 39ms (Views: 37.5ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-04-25 23:12:00 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:12:00 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:12:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:12:00 -0700 + + +Started GET "/assets/application.self-6842d6a9a0ec8df1960ef9685a77560a2a51a4f5bd59358d41039c60a8e9fa9f.css?body=1" for ::1 at 2016-04-25 23:12:00 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:12:00 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:00 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:12:00 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:12:04 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (1.7ms) 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 tasklist/index.html.erb within layouts/application (14.5ms) +Completed 200 OK in 61ms (Views: 57.3ms | ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-04-25 23:12:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) 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 tasklist/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:12:12 -0700 + + +Started GET "/assets/application.self-eefa06d48576fe48b8dfacb65da0c0e3874b2cd9d000f29815c88241d331d8a8.css?body=1" for ::1 at 2016-04-25 23:12:12 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:12:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:12:12 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:12:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:12 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:12:12 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:12:30 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:30 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:12:30 -0700 + + +Started GET "/assets/application.self-7ef8bb4409ee9317f32ebae3103ecfad9e3ca4ae4c899e559a30ce7f5e56d6d5.css?body=1" for ::1 at 2016-04-25 23:12:30 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:12:30 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:30 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:12:30 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:12:30 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:30 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:12:30 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:12:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:39 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:39 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:12:39 -0700 + + +Started GET "/assets/application.self-bf3eb436db30f38a1cfb7e24336df201e2c5527a641025739df790a99950acb0.css?body=1" for ::1 at 2016-04-25 23:12:39 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:12:39 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:12:39 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:12:39 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:39 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:12:39 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:12:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:12:48 -0700 + + +Started GET "/assets/application.self-7128c89d00970f85f0e56ac211d10bdb0123d166d98bf227a9c33709242baff0.css?body=1" for ::1 at 2016-04-25 23:12:48 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:12:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:12:48 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:12:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:48 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:12:48 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:12:59 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:59 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:12:59 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:12:59 -0700 + + +Started GET "/assets/application.self-8f598617e3129f06ef7b14f9fa66d70f61d6a50ac2bb64c0cecea4b058fb12d5.css?body=1" for ::1 at 2016-04-25 23:12:59 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:12:59 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:12:59 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:12:59 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:12:59 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:12:59 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-25 23:13:10 -0700 +Processing by TasklistController#new as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.4ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:13:10 -0700 + + +Started POST "/tasklist" for ::1 at 2016-04-25 23:13:19 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"o0DZW3WJUSGAi48r2073/2XxomkDjLpqvRXHBH5aYbkMLKlzWB8pR8zToP5fHPcLeGJcveWMRFQrMLALrney/Q==", "rails_task_list"=>{"title"=>"yes yes yes", "description"=>"go", "person_id"=>"2"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "yes yes yes"], ["description", "go"], ["person_id", 2], ["created_at", "2016-04-26 06:13:19.485686"], ["updated_at", "2016-04-26 06:13:19.485686"]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2016-04-25 23:13:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:13:19 -0700 + + +Started DELETE "/tasklist/23" for ::1 at 2016-04-25 23:13:39 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"1EytgGW8ZtmoJhoP4y5xExryJ6uY3hQFmbzvWi+g0s97IN2oSCoev+R+NdpnfHHnB2HZf37e6jsPmZhV/40Biw==", "id"=>"23"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 23]] +  (0.0ms) begin transaction + SQL (0.7ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 23]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.3ms) + + +Started GET "/" for ::1 at 2016-04-25 23:13:39 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:13:39 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:13:53 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:13:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:13:53 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:13:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:13:53 -0700 + + +Started GET "/assets/application.self-65e3bd982146a7d39cb6445f6f465af68a3c4c7cb9ab55a4ba06c05dc159091a.css?body=1" for ::1 at 2016-04-25 23:13:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:13:53 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:13:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:13:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:13:53 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:13:53 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:14:54 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 32ms (Views: 30.7ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:14:54 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:14:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:14:54 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:14:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:14:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:14:54 -0700 + + +Started GET "/assets/application.self-49f9e4819ed6c42f6736b102686e03d3f8bd2010e885879a8ddb89b7a065289b.css?body=1" for ::1 at 2016-04-25 23:14:54 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:14:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:14:54 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:14:54 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:15:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:15:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:15:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:15:09 -0700 + + +Started GET "/assets/application.self-52a907b68cfaa27a13acea0c091ba16cc34fd123edd9d2928c2cd49108acebd5.css?body=1" for ::1 at 2016-04-25 23:15:09 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:15:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:15:09 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:15:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:15:09 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:15:09 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:15:09 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:15:28 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:15:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:15:28 -0700 + + +Started GET "/assets/application.self-6dc9adef462a75a7bbba666288f54f02f008dde9021077ea5ad038567758112c.css?body=1" for ::1 at 2016-04-25 23:15:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:15:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:15:28 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:15:28 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:15:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:15:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:15:28 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:15:28 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:15:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:15:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:15:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:15:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:15:40 -0700 + + +Started GET "/assets/application.self-52a907b68cfaa27a13acea0c091ba16cc34fd123edd9d2928c2cd49108acebd5.css?body=1" for ::1 at 2016-04-25 23:15:40 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:15:40 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:15:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:15:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:15:40 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:15:40 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:16:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:16:11 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:16:11 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:16:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:16:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:16:11 -0700 + + +Started GET "/assets/application.self-c48d5b503ec3b6da180d698d66361d70808cc1cfc0fea9f67d1ebd4d7cda022d.css?body=1" for ::1 at 2016-04-25 23:16:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:16:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:16:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:16:11 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:16:11 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:16:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:16:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:16:42 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:16:42 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:16:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:16:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:16:42 -0700 + + +Started GET "/assets/application.self-0b8c0a5a5af2ea379c40210f8fc3c8b8ab1b221d5cf5e368f6d19e2760dccb91.css?body=1" for ::1 at 2016-04-25 23:16:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:16:42 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:16:42 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:16:42 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:17:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 35ms (Views: 34.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:17:12 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:17:12 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 23:17:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 23:17:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 23:17:12 -0700 + + +Started GET "/assets/application.self-92c43e48062807f6034d3adcf37632014926c93dca508af8c8fd53e2e0e584d7.css?body=1" for ::1 at 2016-04-25 23:17:12 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 23:17:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 23:17:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 23:17:12 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:17:12 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-25 23:18:04 -0700 +Processing by TasklistController#new as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.0ms) +Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-25 23:18:04 -0700 + + +Started GET "/" for ::1 at 2016-04-25 23:18:09 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-25 23:18:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-25 23:18:12 -0700 +Processing by PeopleController#index as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/1/edit" for ::1 at 2016-04-26 08:22:36 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (1.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.5ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (14.4ms) +Completed 200 OK in 80ms (Views: 66.2ms | ActiveRecord: 1.6ms) + + +Started GET "/" for ::1 at 2016-04-26 08:22:40 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.5ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 75ms (Views: 72.9ms | ActiveRecord: 0.8ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-26 08:22:43 -0700 +Processing by TasklistController#new as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.4ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-26 08:22:50 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.3ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.5ms) + + +Started GET "/people" for ::1 at 2016-04-26 08:22:58 -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 22ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-26 08:23:02 -0700 +Processing by TasklistController#new as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.7ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-26 08:23:07 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.5ms) + + +Started GET "/tasklist/1/edit" for ::1 at 2016-04-26 08:23:16 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.8ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/2/edit" for ::1 at 2016-04-26 08:23:19 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"2"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.4ms) +Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasklist/22" for ::1 at 2016-04-26 08:23:24 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:23:24 -0700 + + +Started GET "/tasklist/22" for ::1 at 2016-04-26 08:24:11 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (2.2ms) +Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:24:11 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:24:11 -0700 + + +Started GET "/assets/application.self-92c43e48062807f6034d3adcf37632014926c93dca508af8c8fd53e2e0e584d7.css?body=1" for ::1 at 2016-04-26 08:24:11 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:24:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:24:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:24:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:24:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:24:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:24:11 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:24:11 -0700 + + +Started GET "/" for ::1 at 2016-04-26 08:24:12 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:24:12 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:24:18 -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 27ms (Views: 26.1ms | ActiveRecord: 0.1ms) + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 08:24:20 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (1.3ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.3ms) + + +Started GET "/people/4/all_tasklist" for ::1 at 2016-04-26 08:24:22 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"4"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 4]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 4], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasklist/2/done" for ::1 at 2016-04-26 08:24:45 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"EtZL0AE4YWpxS/N9VdCwoK+s7j9X73bDVfayeEo+ACe9ujv4LK4ZDD0T3KjRgrBUsj8Q67HviP3D08V3mhPTYw==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-26 08:24:45 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:24:45 -0700 + + +Started GET "/" for ::1 at 2016-04-26 08:24:54 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-26 08:25:14 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:25:15 -0700 + + +Started GET "/assets/application.self-92c43e48062807f6034d3adcf37632014926c93dca508af8c8fd53e2e0e584d7.css?body=1" for ::1 at 2016-04-26 08:25:15 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:25:15 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:25:15 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:25:15 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:25:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:25:15 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:25:15 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:25:15 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:25:15 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 08:25:38 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:25:38 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 08:25:49 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/new" for ::1 at 2016-04-26 08:26:40 -0700 +Processing by TasklistController#new as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (2.3ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:26:40 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:26:50 -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 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 08:27:01 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 08:29:49 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.6ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:29:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:29:49 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:29:49 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:29:49 -0700 + + +Started GET "/assets/application.self-92c43e48062807f6034d3adcf37632014926c93dca508af8c8fd53e2e0e584d7.css?body=1" for ::1 at 2016-04-26 08:29:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:29:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:29:49 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:29:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:29:49 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:29:49 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 08:30:07 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:30:08 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:30:08 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:30:08 -0700 + + +Started GET "/assets/application.self-92c43e48062807f6034d3adcf37632014926c93dca508af8c8fd53e2e0e584d7.css?body=1" for ::1 at 2016-04-26 08:30:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:30:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:30:08 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:30:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:30:08 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:30:08 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:30:08 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 08:30:53 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.5ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (12.9ms) +Completed 200 OK in 64ms (Views: 51.4ms | ActiveRecord: 1.9ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:30:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:30:53 -0700 + + +Started GET "/assets/application.self-92c43e48062807f6034d3adcf37632014926c93dca508af8c8fd53e2e0e584d7.css?body=1" for ::1 at 2016-04-26 08:30:53 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:30:53 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:30:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:30:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:30:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:30:53 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:30:53 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:30:53 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 08:31:02 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (8.9ms) +Completed 200 OK in 57ms (Views: 47.6ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:31:02 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:31:02 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:31:02 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:31:02 -0700 + + +Started GET "/assets/application.self-92c43e48062807f6034d3adcf37632014926c93dca508af8c8fd53e2e0e584d7.css?body=1" for ::1 at 2016-04-26 08:31:02 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:31:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:31:02 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:31:02 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:31:02 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:31:02 -0700 + + +Started GET "/" for ::1 at 2016-04-26 08:31:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:31:08 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:31:08 -0700 + + +Started GET "/" for ::1 at 2016-04-26 08:31:08 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:31:08 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-26 08:31:15 -0700 +Processing by TasklistController#new as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.7ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:31:15 -0700 + + +Started POST "/tasklist" for ::1 at 2016-04-26 08:31:32 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"pgqSQ2mMXucYRzSc5L40n2cN8EK4arK+p9492XkzV4IJZuJrRBomgVQfG0lg7DRrep4Oll5qTIAx+0rWqR6Exg==", "rails_task_list"=>{"title"=>"Add New Task", "description"=>"Find shoes for vacation", "person_id"=>"3"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Add New Task"], ["description", "Find shoes for vacation"], ["person_id", 3], ["created_at", "2016-04-26 15:31:32.907919"], ["updated_at", "2016-04-26 15:31:32.907919"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-04-26 08:31:32 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:31:32 -0700 + + +Started GET "/tasklist/24" for ::1 at 2016-04-26 08:31:44 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"24"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 24]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:31:44 -0700 + + +Started PATCH "/tasklist/24/done" for ::1 at 2016-04-26 08:31:50 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"tJLBtW/NHXqIxMkGQh75XkvJ7xZWmfN51JFkTd4N9Mob/rGdQltlHMSc5tPGTPmqVloRwrCZDUdCtBNCDiAnjg==", "id"=>"24"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 24]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "rails_task_lists" SET "completion_status" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["completion_status", "Done!"], ["updated_at", "2016-04-26 15:31:50.079397"], ["id", 24]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/" for ::1 at 2016-04-26 08:31:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:31:50 -0700 + + +Started PATCH "/tasklist/24/done" for ::1 at 2016-04-26 08:31:52 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"bLEdFpOFvu9TWh5EWvXq5lWhgthNBy2F6qnp15eTza/D3W0+vhPGiR8CMZHep+oSSDJ8DKsH07t8jJ7YR74e6w==", "id"=>"24"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 24]] +  (0.0ms) 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-26 08:31:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:31:52 -0700 + + +Started GET "/tasklist/24" for ::1 at 2016-04-26 08:31:54 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"24"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 24]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:31:54 -0700 + + +Started GET "/" for ::1 at 2016-04-26 08:32:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.8ms) + + +Started DELETE "/tasklist/24" for ::1 at 2016-04-26 08:32:11 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"9sUu/x1uUEOtwQ6OdBkuWYllg9Kofdieip8Wzf3GSl1ZqV7XMPgoJeGZIVvwSy6tlPZ9Bk59JqAcumHCLeuZGQ==", "id"=>"24"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 24]] +  (0.2ms) begin transaction + SQL (0.7ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 24]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-26 08:32:11 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:32:11 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:33: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.0ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-26 08:33:30 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.0ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:33:30 -0700 + + +Started PATCH "/tasklist/22" for ::1 at 2016-04-26 08:33:56 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"uOCQJRiFDX4HtLok2JihoroVOUvRu8gLNrMPtLUjS1sXjOANNRN1GEvslfFcyqFWp4bHnze7NjWglni7ZQ6YHw==", "rails_task_list"=>{"title"=>"Trip to Pairs", "description"=>"Buy clothes for summer!", "person_id"=>""}, "commit"=>"Update Rails task list", "id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "rails_task_lists" SET "title" = ?, "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["title", "Trip to Pairs"], ["person_id", nil], ["updated_at", "2016-04-26 15:33:56.173422"], ["id", 22]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasklist.22 +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasklist.22" for ::1 at 2016-04-26 08:33:56 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasklist/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:33:56 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-26 08:34:17 -0700 +Processing by TasklistController#new as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.8ms) +Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:34:17 -0700 + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-26 08:34:33 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.6ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-26 08:34:42 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.1ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasklist/22/edit" for ::1 at 2016-04-26 08:34:47 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.0ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasklist/22" for ::1 at 2016-04-26 08:34:51 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7/LvBY4ODPnx1s3UETGhXlqxa4/8g+DAwqSCYEk1R4VAnp8to5h0n72O4gGVY6GqRyKVWxqDHv5UgfVvmRiUwQ==", "rails_task_list"=>{"title"=>"Trip to Pairs", "description"=>"Buy clothes for summer!", "person_id"=>"3"}, "commit"=>"Update Rails task list", "id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 3], ["updated_at", "2016-04-26 15:34:51.693761"], ["id", 22]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasklist.22 +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/tasklist.22" for ::1 at 2016-04-26 08:34:51 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:34:51 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:36:01 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 08:36:02 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (1.2ms) +Completed 200 OK in 19ms (Views: 15.4ms | ActiveRecord: 0.4ms) + + +Started GET "/people" for ::1 at 2016-04-26 08:37:40 -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 31ms (Views: 30.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:37:40 -0700 + + +Started GET "/assets/application.self-1cb8050c6b15d81f10f1af241e93ecdfbd18ddaecda758fdc7f68cebcc711281.css?body=1" for ::1 at 2016-04-26 08:37:40 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:37:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:37:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:37:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:37:40 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:37:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:37:40 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:37:40 -0700 + + +Started GET "/tasklist.22" for ::1 at 2016-04-26 08:37:42 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:37:42 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:37:46 -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 21ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 08:37:50 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (1.4ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 08:37:51 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:37:51 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:37:51 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:37:51 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:37:51 -0700 + + +Started GET "/assets/application.self-1cb8050c6b15d81f10f1af241e93ecdfbd18ddaecda758fdc7f68cebcc711281.css?body=1" for ::1 at 2016-04-26 08:37:51 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:37:51 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:37:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:37:51 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:37:51 -0700 + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 08:38:29 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (0.9ms) +Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:38:29 -0700 + + +Started GET "/assets/application.self-cd90d28b94080c3e8662d265659a9245d52e5fb254080beddb7bf1bfeca1eb40.css?body=1" for ::1 at 2016-04-26 08:38:29 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:38:29 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:38:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:38:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:38:29 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:38:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:38:29 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:38:29 -0700 + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 08:38:48 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (0.9ms) +Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:38:48 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:38:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:38:48 -0700 + + +Started GET "/assets/application.self-cd90d28b94080c3e8662d265659a9245d52e5fb254080beddb7bf1bfeca1eb40.css?body=1" for ::1 at 2016-04-26 08:38:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:38:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:38:48 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:38:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:38:48 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:38:48 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:38:54 -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: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist.22" for ::1 at 2016-04-26 08:38:55 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:38:55 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:39:17 -0700 +Processing by PeopleController#index as HTML + Person Load (0.6ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.6ms) + + +Started GET "/people" for ::1 at 2016-04-26 08:39:19 -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 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:39:19 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:39:19 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:39:19 -0700 + + +Started GET "/assets/application.self-cd90d28b94080c3e8662d265659a9245d52e5fb254080beddb7bf1bfeca1eb40.css?body=1" for ::1 at 2016-04-26 08:39:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:39:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:39:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:39:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:39:19 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:39:19 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:39: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 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:39:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:39:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:39:20 -0700 + + +Started GET "/assets/application.self-cd90d28b94080c3e8662d265659a9245d52e5fb254080beddb7bf1bfeca1eb40.css?body=1" for ::1 at 2016-04-26 08:39:20 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:39:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:39:20 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:39:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:39:20 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:39:20 -0700 + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 08:39:21 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:39:21 -0700 + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 08:40:11 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (1.3ms) +Completed 200 OK in 31ms (Views: 29.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:40:11 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:40:11 -0700 + + +Started GET "/assets/application.self-7ec82bb9d3197e9489609f725d43dd62d32304dd8bc189048ed1361ec8f22b93.css?body=1" for ::1 at 2016-04-26 08:40:11 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:40:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:40:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:40:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:40:11 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:40:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:40:11 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:40:11 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:41:57 -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 19ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasklist.22" for ::1 at 2016-04-26 08:42:04 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:42:04 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:42:15 -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 18ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started GET "/people" for ::1 at 2016-04-26 08:42:49 -0700 +Processing by PeopleController#index as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/people/6/all_tasklist" for ::1 at 2016-04-26 08:43:25 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"6"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 6]] + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 6]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 6], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (2.1ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.4ms) From 843b79b3afe69bbfb65b362c511382993b73f95d Mon Sep 17 00:00:00 2001 From: Sarah Date: Tue, 26 Apr 2016 08:57:22 -0700 Subject: [PATCH 22/23] done --- app/assets/stylesheets/application.css | 26 ++- app/views/people/index.html.erb | 2 +- log/development.log | 293 +++++++++++++++++++++++++ 3 files changed, 319 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index efb2900e0..282dd7299 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -27,13 +27,37 @@ */ +.index_people:before{ + content: ""; + position: fixed; + top: 0; + left: 0; + background-image: url("./type.jpg"); + width: 100%; + height: 100%; + opacity : 100.0; + z-index: -1; + background-size: cover; + background-repeat: repeat; + background-attachment: fixed; + +} + +.index_people{ + margin-top: 18%; + margin-left: 20%; + position: relative; + font-family: American Typewriter; + list-style-type: none; + + +} .heading{ text-align: center; - } .index{ diff --git a/app/views/people/index.html.erb b/app/views/people/index.html.erb index e4a773fbf..8e942c40d 100644 --- a/app/views/people/index.html.erb +++ b/app/views/people/index.html.erb @@ -2,7 +2,7 @@ <%@all_people.each do |task|%>
  • - <%=link_to task.name, task_path(task.id)%> + <%=link_to task.name, task_path(task.id)%>

  • diff --git a/log/development.log b/log/development.log index 3f0678129..431b7aab1 100644 --- a/log/development.log +++ b/log/development.log @@ -102694,3 +102694,296 @@ Processing by PeopleController#all_tasklist as HTML RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 6], ["completion_status", "done"]] Rendered people/all_tasklist.erb within layouts/application (2.1ms) Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.4ms) + + +Started GET "/people" for ::1 at 2016-04-26 08:53:35 -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 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:53:35 -0700 + + +Started GET "/assets/application.self-7ec82bb9d3197e9489609f725d43dd62d32304dd8bc189048ed1361ec8f22b93.css?body=1" for ::1 at 2016-04-26 08:53:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:53:35 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:53:35 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:53:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:53:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:53:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:53:35 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:53:35 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:54:33 -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 28ms (Views: 27.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:54:33 -0700 + + +Started GET "/assets/application.self-a8c132dc1837dd5f7e135f948b125e434cca3dc56c1fcab5f8dabd879cbe8426.css?body=1" for ::1 at 2016-04-26 08:54:33 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:54:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:54:33 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:54:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:54:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:54:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:54:33 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:54:33 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:54:34 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:55:03 -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 34ms (Views: 33.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:55:03 -0700 + + +Started GET "/assets/application.self-4b66f7a6cd15136fa2dffa33d0e076bec70891205c4d6ad672cd5550d4a1fe1e.css?body=1" for ::1 at 2016-04-26 08:55:03 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:55:03 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:55:03 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:55:03 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:55:03 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:55:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:55:03 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:55:03 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:55:03 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:55:31 -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 200 OK in 34ms (Views: 33.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:55:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:55:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:55:31 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:55:31 -0700 + + +Started GET "/assets/application.self-5a29b912f14d3f4717f8cbfc331e75452f9c40445f4a75f26591494213149271.css?body=1" for ::1 at 2016-04-26 08:55:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:55:31 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:55:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:55:31 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:55:31 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:55:31 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:55:32 -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 20ms (Views: 19.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:55:32 -0700 + + +Started GET "/assets/application.self-5a29b912f14d3f4717f8cbfc331e75452f9c40445f4a75f26591494213149271.css?body=1" for ::1 at 2016-04-26 08:55:32 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:55:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:55:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:55:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:55:32 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:55:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:55:32 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:55:32 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:55:32 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:55:54 -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 32ms (Views: 31.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:55:54 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:55:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:55:54 -0700 + + +Started GET "/assets/application.self-021d6558f0790d424198e666ba975153f469c50868a2159a3556d428f381890e.css?body=1" for ::1 at 2016-04-26 08:55:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:55:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:55:54 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:55:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:55:54 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:55:54 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:55:54 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:56:14 -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 36ms (Views: 35.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:56:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:56:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:56:14 -0700 + + +Started GET "/assets/application.self-56b589d8675721917c7372e9ecf39a6061369751d67d51562300f5d70caddfb4.css?body=1" for ::1 at 2016-04-26 08:56:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:56:14 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:56:14 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:56:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:56:14 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:56:14 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:56:14 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 08:56:28 -0700 +Processing by PeopleController#index as HTML + Person Load (0.1ms) SELECT "people".* FROM "people" + Rendered people/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:56:28 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 08:56:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 08:56:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 08:56:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 08:56:28 -0700 + + +Started GET "/assets/application.self-56b589d8675721917c7372e9ecf39a6061369751d67d51562300f5d70caddfb4.css?body=1" for ::1 at 2016-04-26 08:56:28 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:56:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 08:56:28 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 08:56:28 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 08:56:28 -0700 From fa6c8aea50ff89247ed392fd484c82fc46f04a20 Mon Sep 17 00:00:00 2001 From: Sarah Date: Tue, 26 Apr 2016 09:53:12 -0700 Subject: [PATCH 23/23] more changes --- app/controllers/people_controller.rb | 2 +- db/development.sqlite3 | Bin 24576 -> 24576 bytes log/development.log | 627 +++++++++++++++++++++++++++ 3 files changed, 628 insertions(+), 1 deletion(-) diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb index d70e5d6de..a0fe08193 100644 --- a/app/controllers/people_controller.rb +++ b/app/controllers/people_controller.rb @@ -12,7 +12,7 @@ def show def all_tasklist @person = Person.find(params[:id]) @list = @person.rails_task_lists.where(completion_status: nil) - @done_list = @person.rails_task_lists.where(completion_status: "done") + @done_list = @person.rails_task_lists.where(completion_status: "Done!") end end diff --git a/db/development.sqlite3 b/db/development.sqlite3 index a10756aa8cb93ccee37b92aff23e573608b28157..69dd8269ac71bf9a1bb2b0b4b3be8303548afb89 100644 GIT binary patch delta 441 zcmZoTz}Rqrae_3X-$WT_M!$^-^Y!_qdHFpVnE4tQ_+IkQ=WE!^XW-An!mq^SxjE5B zo~b@vnv+4(m4U(0kuxYYF-0LUCo8ckHMJ-a%qz)AEKx`-D#=XFNmWRyRPfEuOG&I$ zG%_$W(={;BH8N8$G_x`_vNAB#GcqwXHZZ|06DP^ZAa5)Vx5ziOq$()29%vS+xn_2|+ zMrH}f{E*VrVxR>mCe&L2jW96PGdD6aG%`Sug3828aWW_yBHWG3SZwabXS9*2o}q~m Lvw^9}A_oNkM(}Q# delta 405 zcmZXQ%SyvQ6ozMdSp=e8#R>`;6_G9yXEMpeq=H6E-KmSN1huhAX{b#~CiSvv-MCir z0D^BIeSvO#5ue1dxG1_i{O9n0d}lI)lNo$jgN@hqW7zm;zwK65m*h)Olp&}*%doOJ zUB+i}34p@q)ZbSN`L$XuGm{aTKdH)iJ^=u}wk{M2Y-<2`-qn0kfY)6WQN1c6=mh~f z4ewFQ=ly0B2Z;BQkfUyrqC3CiXHgP2k~rKjFku=tHG?5yxsd_$#QC?eu#U&J zL!Fxy3GCE=$gq`0LzE@x+>cUzG"Z/KencsXytSszheQKPM1sbcGlRQabwhJchePG5COP8fInu615oGysuCWOEWsoTVFqpVrwPxv9nfkMvgUQKPsgw==", "id"=>"21"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 21]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find RailsTaskList with 'id'=21: + activerecord (4.2.6) lib/active_record/core.rb:155:in `find' + app/controllers/tasklist_controller.rb:57:in `delete' + 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/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/sakne/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f021ac32ea39d842/variables" for ::1 at 2016-04-26 09:40:26 -0700 + + +Started GET "/" for ::1 at 2016-04-26 09:45:19 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + 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 tasklist/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:45:19 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 09:45:24 -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 "/assets/type.jpg" for ::1 at 2016-04-26 09:45:24 -0700 + + +Started GET "/people/4/all_tasklist" for ::1 at 2016-04-26 09:45:26 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"4"} + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 4]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 4], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (1.5ms) +Completed 200 OK in 36ms (Views: 32.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:45:26 -0700 + + +Started GET "/tasklist/1/edit" for ::1 at 2016-04-26 09:45:33 -0700 +Processing by TasklistController#edit as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.2ms) +Completed 200 OK in 25ms (Views: 22.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:45:33 -0700 + + +Started PATCH "/tasklist/1" for ::1 at 2016-04-26 09:45:39 -0700 +Processing by TasklistController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"2fM/G8OfztpisRjBGRhZ3cmrM+ZhSLGc7lh1T4KRU9B2n08z7gm2vC7pNxSdSlkp1DjNModIT6J4fQJAUryAlA==", "rails_task_list"=>{"title"=>"The First Task", "description"=>"Get up and dress", "person_id"=>"3"}, "commit"=>"Update Rails task list", "id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] +Unpermitted parameters: utf8, _method, authenticity_token, commit, id +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "rails_task_lists" SET "person_id" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["person_id", 3], ["updated_at", "2016-04-26 16:45:39.469587"], ["id", 1]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasklist.1 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasklist.1" for ::1 at 2016-04-26 09:45:39 -0700 +Processing by TasklistController#index as + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:45:39 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 09:45:47 -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 18ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:45:47 -0700 + + +Started GET "/people/6/all_tasklist" for ::1 at 2016-04-26 09:45:50 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"6"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 6]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 6]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 6], ["completion_status", "done"]] + Rendered people/all_tasklist.erb within layouts/application (1.5ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:45:50 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 09:45:57 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:45:57 -0700 + + +Started PATCH "/tasklist/1/done" for ::1 at 2016-04-26 09:46:03 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"yfqdE4Rbtoc1Hlq39sI7uxKb8Xigxdq6BCHHjiSItilmlu07qc3O4XlGdWJykDtPDwgPrEbFJISSBLCB9KVlbQ==", "id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "rails_task_lists" SET "completion_status" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["completion_status", "Done!"], ["updated_at", "2016-04-26 16:46:03.696160"], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-26 09:46:03 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:46:03 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 09:46:05 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (1.3ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:46:05 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 09:46:38 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (7.9ms) +Completed 200 OK in 36ms (Views: 22.9ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/application.self-56b589d8675721917c7372e9ecf39a6061369751d67d51562300f5d70caddfb4.css?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/tasklist/1" for ::1 at 2016-04-26 09:46:38 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"1"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/show.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/application.self-56b589d8675721917c7372e9ecf39a6061369751d67d51562300f5d70caddfb4.css?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/tasklist.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/tasklist.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:46:38 -0700 + + +Started GET "/" for ::1 at 2016-04-26 09:46:41 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 2]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:46:41 -0700 + + +Started DELETE "/tasklist/22" for ::1 at 2016-04-26 09:46:48 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"nM8qYXA3WKTDMveKbHtofxZRkHTCdPNNWbb7Lp1d/yQzo1pJXaEgwo9q2F/oKWiLC8JuoCR0DXPPk4whTXAsYA==", "id"=>"22"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 22]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 22]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/" for ::1 at 2016-04-26 09:46:48 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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", 2]] + Rendered tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:46:48 -0700 + + +Started DELETE "/tasklist/2" for ::1 at 2016-04-26 09:46:50 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"pZuo4nRrrC2U73++aXt4Cf/snmoHP2tW5MepadVEDucK99jKWf3US9i3UGvtKXj94n9gvuE/lWhy4t5mBWndow==", "id"=>"2"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 2]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 2]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.4ms) + + +Started GET "/" for ::1 at 2016-04-26 09:46:50 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.4ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:46:51 -0700 + + +Started DELETE "/tasklist/1" for ::1 at 2016-04-26 09:46:52 -0700 +Processing by TasklistController#delete as HTML + Parameters: {"authenticity_token"=>"96TC1RAUCS1pPkdqjsLDSmAK94QM2NHhJ4iPXCr3v5NYyLL9PYJxSyVmaL8KkMO+fZkJUOrYL9+xrfhT+tps1w==", "id"=>"1"} + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 1]] +  (0.1ms) begin transaction + SQL (1.1ms) DELETE FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? [["id", 1]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-04-26 09:46:52 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Rendered tasklist/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:46:52 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-26 09:46:54 -0700 +Processing by TasklistController#new as HTML + Person Load (0.2ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.9ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:46:54 -0700 + + +Started POST "/tasklist" for ::1 at 2016-04-26 09:47:17 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"F79dmdJAr4TkuNhvyLKCG7PduOBFPtQ+cEDj/t+rvAu40y2x/9bX4qjg97pM4ILvrk5GNKM+KgDmZZTxD4ZvTw==", "rails_task_list"=>{"title"=>"Read Metz", "description"=>"Read Metz by friday", "person_id"=>"1"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "rails_task_lists" ("title", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Read Metz"], ["description", "Read Metz by friday"], ["person_id", 1], ["created_at", "2016-04-26 16:47:17.374123"], ["updated_at", "2016-04-26 16:47:17.374123"]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for ::1 at 2016-04-26 09:47:17 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:47:17 -0700 + + +Started GET "/tasklist/25" for ::1 at 2016-04-26 09:47:21 -0700 +Processing by TasklistController#show as HTML + Parameters: {"id"=>"25"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] + Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/show.erb within layouts/application (1.7ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:47:21 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-26 09:47:29 -0700 +Processing by TasklistController#new as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (4.3ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:47:29 -0700 + + +Started POST "/tasklist" for ::1 at 2016-04-26 09:48:05 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"YbzlIYnIRPRX2Cd/5R8XmrbLAlXCoA5zmhmyKWKoXyTO0JUJpF48khuACKphTRduq1j8gSSg8E0MPMUmsoWMYA==", "rails_task_list"=>{"title"=>"Read Primer", "description"=>"Read it by Tuesday", "person_id"=>"1"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.8ms) INSERT INTO "rails_task_lists" ("title", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Read Primer"], ["description", "Read it by Tuesday"], ["person_id", 1], ["created_at", "2016-04-26 16:48:05.722120"], ["updated_at", "2016-04-26 16:48:05.722120"]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/" for ::1 at 2016-04-26 09:48:05 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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 tasklist/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:48:05 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 09:48:09 -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 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:48:09 -0700 + + +Started GET "/people/4/all_tasklist" for ::1 at 2016-04-26 09:48:12 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"4"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]] + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 4]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 4], ["completion_status", "Done!"]] + Rendered people/all_tasklist.erb within layouts/application (1.6ms) +Completed 200 OK in 33ms (Views: 26.9ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:48:12 -0700 + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 09:48:14 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "Done!"]] + Rendered people/all_tasklist.erb within layouts/application (2.3ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasklist/25/done" for ::1 at 2016-04-26 09:48:23 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"zsbWg0Vdw6o7oMnQyYl0U101BQZWUNZV/pc0CVHnDxVhqqaraMu7zHf45gVN23SnQKb70rBQKGtoskMGgcrcUQ==", "id"=>"25"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 25]] +  (0.0ms) begin transaction + SQL (0.8ms) UPDATE "rails_task_lists" SET "completion_status" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["completion_status", "Done!"], ["updated_at", "2016-04-26 16:48:23.999189"], ["id", 25]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/" for ::1 at 2016-04-26 09:48:24 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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 tasklist/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:48:24 -0700 + + +Started PATCH "/tasklist/26/done" for ::1 at 2016-04-26 09:48:25 -0700 +Processing by TasklistController#finished as HTML + Parameters: {"authenticity_token"=>"f8vsWfbfZgckWq+V0L8VSVIFTpvO5hRRgQcxEWxm1LvQp5xx20keYWgCgEBU7RW9T5awTyjm6m8XIkYevEsH/w==", "id"=>"26"} + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."id" = ? LIMIT 1 [["id", 26]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "rails_task_lists" SET "completion_status" = ?, "updated_at" = ? WHERE "rails_task_lists"."id" = ? [["completion_status", "Done!"], ["updated_at", "2016-04-26 16:48:25.142054"], ["id", 26]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-26 09:48:25 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.3ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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 tasklist/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:48:25 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 09:48:26 -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 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:48:26 -0700 + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 09:48:28 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "Done!"]] + Rendered people/all_tasklist.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:48:28 -0700 + + +Started GET "/tasklist/new" for ::1 at 2016-04-26 09:51:29 -0700 +Processing by TasklistController#new as HTML + Person Load (0.3ms) SELECT "people".* FROM "people" + Rendered tasklist/new.erb within layouts/application (3.8ms) +Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:51:29 -0700 + + +Started POST "/tasklist" for ::1 at 2016-04-26 09:52:01 -0700 +Processing by TasklistController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sonnq4GtVxUmPnE1Q1ie6VcQAgrONkqdDQkWYLr+bl0d5ZeDrDsvc2pmXuDHCp4dSoP83ig2tKObLGFvatO9GQ==", "rails_task_list"=>{"title"=>"Read aljazeera", "description"=>"Read that article by Monday!", "person_id"=>"1"}, "commit"=>"Create Rails task list"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "rails_task_lists" ("title", "description", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Read aljazeera"], ["description", "Read that article by Monday!"], ["person_id", 1], ["created_at", "2016-04-26 16:52:01.245304"], ["updated_at", "2016-04-26 16:52:01.245304"]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-04-26 09:52:01 -0700 +Processing by TasklistController#index as HTML + RailsTaskList Load (0.2ms) SELECT "rails_task_lists".* FROM "rails_task_lists" + 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]] + CACHE (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasklist/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:52:01 -0700 + + +Started GET "/people" for ::1 at 2016-04-26 09:52: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.2ms) +Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:52:05 -0700 + + +Started GET "/people/1/all_tasklist" for ::1 at 2016-04-26 09:52:06 -0700 +Processing by PeopleController#all_tasklist as HTML + Parameters: {"id"=>"1"} + Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" IS NULL [["person_id", 1]] + RailsTaskList Load (0.1ms) SELECT "rails_task_lists".* FROM "rails_task_lists" WHERE "rails_task_lists"."person_id" = ? AND "rails_task_lists"."completion_status" = ? [["person_id", 1], ["completion_status", "Done!"]] + Rendered people/all_tasklist.erb within layouts/application (1.1ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/type.jpg" for ::1 at 2016-04-26 09:52:06 -0700

    xn9{rXmm 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 z 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

    kZ|U9UL{@k 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