From b5902c4597d06bfe83b12c7404388bb782537283 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 13:54:17 -0700 Subject: [PATCH 001/103] first commit --- Gemfile | 47 +++++ Gemfile.lock | 163 ++++++++++++++++++ README.rdoc | 28 +++ Rakefile | 6 + app/assets/images/.keep | 0 app/assets/javascripts/application.js | 16 ++ app/assets/stylesheets/application.css | 15 ++ app/controllers/application_controller.rb | 5 + app/controllers/concerns/.keep | 0 app/helpers/application_helper.rb | 2 + app/mailers/.keep | 0 app/models/.keep | 0 app/models/concerns/.keep | 0 app/views/layouts/application.html.erb | 14 ++ bin/bundle | 3 + bin/rails | 9 + bin/rake | 9 + bin/setup | 29 ++++ bin/spring | 15 ++ config.ru | 4 + config/application.rb | 26 +++ config/boot.rb | 3 + config/database.yml | 25 +++ config/environment.rb | 5 + config/environments/development.rb | 41 +++++ config/environments/production.rb | 79 +++++++++ config/environments/test.rb | 42 +++++ config/initializers/assets.rb | 11 ++ config/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 ++ config/locales/en.yml | 23 +++ config/routes.rb | 56 ++++++ config/secrets.yml | 22 +++ db/seeds.rb | 7 + lib/assets/.keep | 0 lib/tasks/.keep | 0 log/.keep | 0 public/404.html | 67 +++++++ public/422.html | 67 +++++++ public/500.html | 66 +++++++ public/favicon.ico | 0 public/robots.txt | 5 + test/controllers/.keep | 0 test/fixtures/.keep | 0 test/helpers/.keep | 0 test/integration/.keep | 0 test/mailers/.keep | 0 test/models/.keep | 0 test/test_helper.rb | 10 ++ vendor/assets/javascripts/.keep | 0 vendor/assets/stylesheets/.keep | 0 56 files changed, 971 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 README.rdoc create mode 100644 Rakefile create mode 100644 app/assets/images/.keep create mode 100644 app/assets/javascripts/application.js create mode 100644 app/assets/stylesheets/application.css create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/concerns/.keep create mode 100644 app/helpers/application_helper.rb create mode 100644 app/mailers/.keep create mode 100644 app/models/.keep create mode 100644 app/models/concerns/.keep create mode 100644 app/views/layouts/application.html.erb create mode 100755 bin/bundle create mode 100755 bin/rails create mode 100755 bin/rake create mode 100755 bin/setup create mode 100755 bin/spring create mode 100644 config.ru create mode 100644 config/application.rb create mode 100644 config/boot.rb create mode 100644 config/database.yml create mode 100644 config/environment.rb create mode 100644 config/environments/development.rb create mode 100644 config/environments/production.rb create mode 100644 config/environments/test.rb create mode 100644 config/initializers/assets.rb create mode 100644 config/initializers/backtrace_silencers.rb create mode 100644 config/initializers/cookies_serializer.rb create mode 100644 config/initializers/filter_parameter_logging.rb create mode 100644 config/initializers/inflections.rb create mode 100644 config/initializers/mime_types.rb create mode 100644 config/initializers/session_store.rb create mode 100644 config/initializers/wrap_parameters.rb create mode 100644 config/locales/en.yml create mode 100644 config/routes.rb create mode 100644 config/secrets.yml create mode 100644 db/seeds.rb create mode 100644 lib/assets/.keep create mode 100644 lib/tasks/.keep create mode 100644 log/.keep create mode 100644 public/404.html create mode 100644 public/422.html create mode 100644 public/500.html create mode 100644 public/favicon.ico create mode 100644 public/robots.txt create mode 100644 test/controllers/.keep create mode 100644 test/fixtures/.keep create mode 100644 test/helpers/.keep create mode 100644 test/integration/.keep create mode 100644 test/mailers/.keep create mode 100644 test/models/.keep create mode 100644 test/test_helper.rb create mode 100644 vendor/assets/javascripts/.keep create mode 100644 vendor/assets/stylesheets/.keep diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..e87fad5fc --- /dev/null +++ b/Gemfile @@ -0,0 +1,47 @@ +source 'https://rubygems.org' + + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '4.2.7' +# 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/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..187046034 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,163 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.2.7) + actionpack (= 4.2.7) + actionview (= 4.2.7) + activejob (= 4.2.7) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 1.0, >= 1.0.5) + actionpack (4.2.7) + actionview (= 4.2.7) + activesupport (= 4.2.7) + 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.7) + activesupport (= 4.2.7) + 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.7) + activesupport (= 4.2.7) + globalid (>= 0.3.0) + activemodel (4.2.7) + activesupport (= 4.2.7) + builder (~> 3.1) + activerecord (4.2.7) + activemodel (= 4.2.7) + activesupport (= 4.2.7) + arel (~> 6.0) + activesupport (4.2.7) + 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 (9.0.5) + 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.2) + debug_inspector (0.0.2) + erubis (2.7.0) + execjs (2.7.0) + globalid (0.3.7) + activesupport (>= 4.1.0) + i18n (0.7.0) + jbuilder (2.6.0) + activesupport (>= 3.0.0, < 5.1) + multi_json (~> 1.2) + jquery-rails (4.2.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.1) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0521) + mini_portile2 (2.1.0) + minitest (5.9.1) + multi_json (1.12.1) + nokogiri (1.6.8) + mini_portile2 (~> 2.1.0) + pkg-config (~> 1.1.7) + pkg-config (1.1.7) + rack (1.6.4) + rack-test (0.6.3) + rack (>= 1.0) + rails (4.2.7) + actionmailer (= 4.2.7) + actionpack (= 4.2.7) + actionview (= 4.2.7) + activejob (= 4.2.7) + activemodel (= 4.2.7) + activerecord (= 4.2.7) + activesupport (= 4.2.7) + bundler (>= 1.3.0, < 2.0) + railties (= 4.2.7) + 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.7) + actionpack (= 4.2.7) + activesupport (= 4.2.7) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (11.3.0) + rdoc (4.2.2) + json (~> 1.4) + sass (3.4.22) + sass-rails (5.0.6) + railties (>= 4.0.0, < 6) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + sdoc (0.4.1) + json (~> 1.7, >= 1.7.7) + rdoc (~> 4.0) + spring (1.7.2) + sprockets (3.7.0) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.2.0) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + sqlite3 (1.3.11) + thor (0.19.1) + thread_safe (0.3.5) + tilt (2.0.5) + turbolinks (5.0.1) + turbolinks-source (~> 5) + turbolinks-source (5.0.0) + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (3.0.2) + 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.7) + sass-rails (~> 5.0) + sdoc (~> 0.4.0) + spring + sqlite3 + turbolinks + uglifier (>= 1.3.0) + web-console (~> 2.0) + +BUNDLED WITH + 1.13.1 diff --git a/README.rdoc b/README.rdoc new file mode 100644 index 000000000..dd4e97e22 --- /dev/null +++ b/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/Rakefile b/Rakefile new file mode 100644 index 000000000..ba6b733dd --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require File.expand_path('../config/application', __FILE__) + +Rails.application.load_tasks diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js new file mode 100644 index 000000000..e07c5a830 --- /dev/null +++ b/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/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css new file mode 100644 index 000000000..f9cd5b348 --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,15 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, 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/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 000000000..d83690e1b --- /dev/null +++ b/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/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 000000000..de6be7945 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/app/mailers/.keep b/app/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/.keep b/app/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 000000000..46eeb110b --- /dev/null +++ b/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/bin/bundle b/bin/bundle new file mode 100755 index 000000000..66e9889e8 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 000000000..0138d79b7 --- /dev/null +++ b/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../../config/application', __FILE__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 000000000..d87d5f578 --- /dev/null +++ b/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 000000000..acdb2c138 --- /dev/null +++ b/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/bin/spring b/bin/spring new file mode 100755 index 000000000..7fe232c3a --- /dev/null +++ b/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/config.ru b/config.ru new file mode 100644 index 000000000..bd83b2541 --- /dev/null +++ b/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/config/application.rb b/config/application.rb new file mode 100644 index 000000000..902432bad --- /dev/null +++ b/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/config/boot.rb b/config/boot.rb new file mode 100644 index 000000000..6b750f00b --- /dev/null +++ b/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/config/database.yml b/config/database.yml new file mode 100644 index 000000000..1c1a37ca8 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + pool: 5 + timeout: 5000 + +development: + <<: *default + database: db/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: db/test.sqlite3 + +production: + <<: *default + database: db/production.sqlite3 diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 000000000..ee8d90dc6 --- /dev/null +++ b/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/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 000000000..b55e2144b --- /dev/null +++ b/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/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 000000000..5c1b32e48 --- /dev/null +++ b/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/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 000000000..1c19f08b2 --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,42 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure 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/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 000000000..01ef3e663 --- /dev/null +++ b/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/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 000000000..59385cdf3 --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 000000000..7f70458de --- /dev/null +++ b/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/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb new file mode 100644 index 000000000..15d065a84 --- /dev/null +++ b/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/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 000000000..33725e95f --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] 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/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 000000000..065395716 --- /dev/null +++ b/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/config/routes.rb b/config/routes.rb new file mode 100644 index 000000000..3f66539d5 --- /dev/null +++ b/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/config/secrets.yml b/config/secrets.yml new file mode 100644 index 000000000..9911ef825 --- /dev/null +++ b/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: 0d91dbfc38dc8454d5e430e1d10a185799bd207674b6de19fe00904ac51d0150ceb9be47eeb70db6c7ea980bbb495e1f189993ed6fd484e6324d72e8141d7305 + +test: + secret_key_base: 90a5270b51b55abe81fe01281016d7739dc3b06dcff521420cb8d8fa182322a2d8d6e8c5ddd751ed51fc3a510c04eb2d256fc1c4f3b23cb2715f864f51173744 + +# 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/db/seeds.rb b/db/seeds.rb new file mode 100644 index 000000000..4edb1e857 --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,7 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the 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) diff --git a/lib/assets/.keep b/lib/assets/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/lib/tasks/.keep b/lib/tasks/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/log/.keep b/log/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/public/404.html b/public/404.html new file mode 100644 index 000000000..b612547fc --- /dev/null +++ b/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

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

+
+

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

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

The change you wanted was rejected.

+

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

+
+

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

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

We're sorry, but something went wrong.

+
+

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

+
+ + diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 000000000..e69de29bb diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 000000000..3c9c7c01f --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,5 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file +# +# To ban all spiders from the entire site uncomment the next two lines: +# User-agent: * +# Disallow: / diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/.keep b/test/fixtures/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 000000000..92e39b2d7 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,10 @@ +ENV['RAILS_ENV'] ||= 'test' +require File.expand_path('../../config/environment', __FILE__) +require 'rails/test_help' + +class ActiveSupport::TestCase + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... +end diff --git a/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep new file mode 100644 index 000000000..e69de29bb From 4d67abd21508c731623f73e4bac155d1432c72eb Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 13:58:39 -0700 Subject: [PATCH 002/103] added tasks controller with index, new, show, update, edit, destroy functionality --- app/assets/javascripts/tasks.coffee | 3 ++ app/assets/stylesheets/tasks.scss | 3 ++ app/controllers/tasks_controller.rb | 19 +++++++++++++ app/helpers/tasks_helper.rb | 2 ++ app/views/tasks/destroy.html.erb | 2 ++ app/views/tasks/edit.html.erb | 2 ++ app/views/tasks/index.html.erb | 2 ++ app/views/tasks/new.html.erb | 2 ++ app/views/tasks/show.html.erb | 2 ++ app/views/tasks/update.html.erb | 2 ++ config/routes.rb | 12 ++++++++ log/development.log | 0 test/controllers/tasks_controller_test.rb | 34 +++++++++++++++++++++++ 13 files changed, 85 insertions(+) create mode 100644 app/assets/javascripts/tasks.coffee create mode 100644 app/assets/stylesheets/tasks.scss create mode 100644 app/controllers/tasks_controller.rb create mode 100644 app/helpers/tasks_helper.rb create mode 100644 app/views/tasks/destroy.html.erb create mode 100644 app/views/tasks/edit.html.erb create mode 100644 app/views/tasks/index.html.erb create mode 100644 app/views/tasks/new.html.erb create mode 100644 app/views/tasks/show.html.erb create mode 100644 app/views/tasks/update.html.erb create mode 100644 log/development.log create mode 100644 test/controllers/tasks_controller_test.rb diff --git a/app/assets/javascripts/tasks.coffee b/app/assets/javascripts/tasks.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/tasks.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss new file mode 100644 index 000000000..b57862ec7 --- /dev/null +++ b/app/assets/stylesheets/tasks.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the tasks controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb new file mode 100644 index 000000000..c5df963c6 --- /dev/null +++ b/app/controllers/tasks_controller.rb @@ -0,0 +1,19 @@ +class TasksController < ApplicationController + def index + end + + def new + end + + def show + end + + def edit + end + + def update + end + + def destroy + end +end diff --git a/app/helpers/tasks_helper.rb b/app/helpers/tasks_helper.rb new file mode 100644 index 000000000..ce894d00c --- /dev/null +++ b/app/helpers/tasks_helper.rb @@ -0,0 +1,2 @@ +module TasksHelper +end diff --git a/app/views/tasks/destroy.html.erb b/app/views/tasks/destroy.html.erb new file mode 100644 index 000000000..a90559f9d --- /dev/null +++ b/app/views/tasks/destroy.html.erb @@ -0,0 +1,2 @@ +

Tasks#destroy

+

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

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

Tasks#edit

+

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

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

Tasks#index

+

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

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

Tasks#new

+

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

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

Tasks#show

+

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

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

Tasks#update

+

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

diff --git a/config/routes.rb b/config/routes.rb index 3f66539d5..2b6060f60 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,4 +1,16 @@ Rails.application.routes.draw do + get 'tasks/index' + + get 'tasks/new' + + get 'tasks/show' + + get 'tasks/edit' + + get 'tasks/update' + + get 'tasks/destroy' + # 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/log/development.log b/log/development.log new file mode 100644 index 000000000..e69de29bb diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb new file mode 100644 index 000000000..633652791 --- /dev/null +++ b/test/controllers/tasks_controller_test.rb @@ -0,0 +1,34 @@ +require 'test_helper' + +class TasksControllerTest < ActionController::TestCase + test "should get index" do + get :index + assert_response :success + end + + test "should get new" do + get :new + assert_response :success + end + + test "should get show" do + get :show + assert_response :success + end + + test "should get edit" do + get :edit + assert_response :success + end + + test "should get update" do + get :update + assert_response :success + end + + test "should get destroy" do + get :destroy + assert_response :success + end + +end From 0eca3625d6adcdac9524d34f308aa82f574c868c Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 14:04:19 -0700 Subject: [PATCH 003/103] redid controller, adding create functionality (index new create show update edit destroy) --- app/controllers/tasks_controller.rb | 7 +++++-- app/views/tasks/create.html.erb | 2 ++ config/routes.rb | 14 ++++++++++++++ test/controllers/tasks_controller_test.rb | 13 +++++++++---- 4 files changed, 30 insertions(+), 6 deletions(-) create mode 100644 app/views/tasks/create.html.erb diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index c5df963c6..6227821a3 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -5,15 +5,18 @@ def index def new end - def show + def create end - def edit + def show end def update end + def edit + end + def destroy end end diff --git a/app/views/tasks/create.html.erb b/app/views/tasks/create.html.erb new file mode 100644 index 000000000..fcad439c4 --- /dev/null +++ b/app/views/tasks/create.html.erb @@ -0,0 +1,2 @@ +

Tasks#create

+

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

diff --git a/config/routes.rb b/config/routes.rb index 2b6060f60..de6f1c660 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -3,6 +3,20 @@ get 'tasks/new' + get 'tasks/create' + + get 'tasks/show' + + get 'tasks/update' + + get 'tasks/edit' + + get 'tasks/destroy' + + get 'tasks/index' + + get 'tasks/new' + get 'tasks/show' get 'tasks/edit' diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb index 633652791..0ce9633f5 100644 --- a/test/controllers/tasks_controller_test.rb +++ b/test/controllers/tasks_controller_test.rb @@ -11,13 +11,13 @@ class TasksControllerTest < ActionController::TestCase assert_response :success end - test "should get show" do - get :show + test "should get create" do + get :create assert_response :success end - test "should get edit" do - get :edit + test "should get show" do + get :show assert_response :success end @@ -26,6 +26,11 @@ class TasksControllerTest < ActionController::TestCase assert_response :success end + test "should get edit" do + get :edit + assert_response :success + end + test "should get destroy" do get :destroy assert_response :success From 093ce60f1087d3d1d3cd93ea6d10663e12df825e Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 14:14:25 -0700 Subject: [PATCH 004/103] added index, show, create, methods, added alltasks method for Wave 1 testing --- app/controllers/tasks_controller.rb | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 6227821a3..42471ef82 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -1,14 +1,32 @@ class TasksController < ApplicationController def index + @tasks = TasksController.all end def new end def create + @params = params + @title = params[:title] + @description = params[:description] + @completed_at = params[:completed_at] end def show + @tasks = TasksController.alltasks + @mytask = nil + + @tasks.each do |task| + if task[:id] == number + @mytask = task + end + end + + if @mytask == nil + render :file => 'public/404.html', :status => :not_found, :layout => false + end + end def update @@ -20,3 +38,12 @@ def edit def destroy end end + + +def self.alltasks + [ + {id: 1, title: "Kitchen Cleaning", description: "Wipe down counter and stove surfaces, wash dishes, vacuum and mop floor, take out trash", completed_at: nil}, + {id: 2, title: "Office Cleaning", description: "Wipe down desk, organize cables, vacuum floor, take out trash", completed_at: 2016-09-27}, + {id: 3, title: "Bathroom Cleaning", description: "Wipe down counter, scrub sink, take out trash", completed_at: 2016-09-26} + ] +end From b543be15d5d900b1010ee62481cd84d8c458ff95 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 14:19:52 -0700 Subject: [PATCH 005/103] added index view --- app/views/tasks/index.html.erb | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index b16c10310..cb7b688b9 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,2 +1,9 @@ -

Tasks#index

-

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

+

Task List

+ +<% @tasks.each do |task| %> +
+

<%= link_to (task[:title], show_path(task[:id])) %>

+

<%= task[:description] %>

+

<%= task[:completed_at] %>

+
+<% end %> \ No newline at end of file From c3e65cd946a6e15ec8ce672bf5e4b46ededcb71c Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 14:22:43 -0700 Subject: [PATCH 006/103] added show view --- app/views/tasks/show.html.erb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 1139224db..1fbf6493c 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,2 +1,5 @@ -

Tasks#show

-

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

+
+

<%= @mytask[:title] %>

+

<%= @mytask[:description] %>

+

<%= @mytask[:completed_at] %>

+
From ba439f0e83884c64a077a7364e24e4d552fd5bb4 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 14:58:32 -0700 Subject: [PATCH 007/103] added private user_params method --- app/controllers/tasks_controller.rb | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 42471ef82..d3ee1eb14 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -1,6 +1,9 @@ class TasksController < ApplicationController + + skip_before_filter :verify_authenticity_token + def index - @tasks = TasksController.all + @tasks = TasksController.alltasks end def new @@ -18,6 +21,7 @@ def show @mytask = nil @tasks.each do |task| + number = params[:id].to_i if task[:id] == number @mytask = task end @@ -37,13 +41,20 @@ def edit def destroy end + + + def self.alltasks + [ + {id: 1, title: "Kitchen Cleaning", description: "Wipe down counter and stove surfaces, wash dishes, vacuum and mop floor, take out trash", completed_at: nil}, + {id: 2, title: "Office Cleaning", description: "Wipe down desk, organize cables, vacuum floor, take out trash", completed_at: 'Tuesday'}, + {id: 3, title: "Bathroom Cleaning", description: "Wipe down counter, scrub sink, take out trash", completed_at: 'Sunday'} + ] + end + end +private -def self.alltasks - [ - {id: 1, title: "Kitchen Cleaning", description: "Wipe down counter and stove surfaces, wash dishes, vacuum and mop floor, take out trash", completed_at: nil}, - {id: 2, title: "Office Cleaning", description: "Wipe down desk, organize cables, vacuum floor, take out trash", completed_at: 2016-09-27}, - {id: 3, title: "Bathroom Cleaning", description: "Wipe down counter, scrub sink, take out trash", completed_at: 2016-09-26} - ] +def user_params + params.require(:task).permit(:title, :description, :completed_at) end From e0a9aa3a30e72fb72bdcc47f4301f73bb292d81d Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 15:04:13 -0700 Subject: [PATCH 008/103] added index view --- app/views/tasks/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index cb7b688b9..2d5f4fcf9 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -2,7 +2,7 @@ <% @tasks.each do |task| %>
-

<%= link_to (task[:title], show_path(task[:id])) %>

+

<%= link_to(task[:title], show_path(task[:id])) %>

<%= task[:description] %>

<%= task[:completed_at] %>

From 58b8834dba3658564b4b86b727c742623bfadc63 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 15:21:06 -0700 Subject: [PATCH 009/103] added show view with ruby logic --- app/views/tasks/show.html.erb | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 1fbf6493c..9c7f491cb 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,5 +1,11 @@
-

<%= @mytask[:title] %>

-

<%= @mytask[:description] %>

-

<%= @mytask[:completed_at] %>

-
+

Title: <%= @mytask[:title] %>

+

Description: <%= @mytask[:description] %>

+

Completion Status: + <% if @mytask[:completed_at] == nil || @mytask[:completed_at] == "" %> + Not done + <% else %> + Done on <%= @mytask[:completed_at] %> + <% end %> +

+ \ No newline at end of file From 9dfe1e1b2dc69d7b1ab8101f84463c546c2d805f Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 15:24:22 -0700 Subject: [PATCH 010/103] added index as root to view, added show and create routes, deleted extra routes from earlier controller mistake --- config/routes.rb | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/config/routes.rb b/config/routes.rb index de6f1c660..eacddf5b9 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,30 +1,25 @@ Rails.application.routes.draw do - get 'tasks/index' - get 'tasks/new' + root to: 'tasks#index' - get 'tasks/create' + get 'tasks/index' , as: 'index' - get 'tasks/show' + get 'tasks/new' - get 'tasks/update' + post 'tasks/create' => 'tasks#create' , as: 'create' - get 'tasks/edit' + get 'tasks/show/:id' => 'tasks#show' , as: 'show' - get 'tasks/destroy' - get 'tasks/index' - get 'tasks/new' - - get 'tasks/show' + get 'tasks/update' get 'tasks/edit' - get 'tasks/update' - get 'tasks/destroy' + + # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". From 2a67fd1f902e7b03da463b339be3f0d82ccce991 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 15:25:15 -0700 Subject: [PATCH 011/103] mystery additions, unclear as to what happened --- db/development.sqlite3 | 0 log/development.log | 947 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 947 insertions(+) create mode 100644 db/development.sqlite3 diff --git a/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 000000000..e69de29bb diff --git a/log/development.log b/log/development.log index e69de29bb..2c44398ea 100644 --- a/log/development.log +++ b/log/development.log @@ -0,0 +1,947 @@ + + +Started GET "/" for ::1 at 2016-09-28 14:34:47 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/railties-4.2.7/lib/rails/templates/rails/welcome/index.html.erb (1.1ms) +Completed 200 OK in 14ms (Views: 7.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 14:35:31 -0700 + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/controllers/tasks_controller.rb:46: Invalid octal digit +...t trash", completed_at: 2016-09-27}, +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/controllers/tasks_controller.rb:47: Invalid octal digit +...t trash", completed_at: 2016-09-26} +... ^): + app/controllers/tasks_controller.rb:46: Invalid octal digit + app/controllers/tasks_controller.rb:47: Invalid octal digit + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.8ms) + + +Started GET "/" for ::1 at 2016-09-28 14:36:25 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `all' for TasksController:Class +Did you mean? call): + app/controllers/tasks_controller.rb:3:in `index' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (77.3ms) + + +Started GET "/" for ::1 at 2016-09-28 14:36:46 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `alltasks' for TasksController:Class): + app/controllers/tasks_controller.rb:3:in `index' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.9ms) + + +Started GET "/" for ::1 at 2016-09-28 14:38:37 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/index.html.erb:5: syntax error, unexpected ',', expecting ')' +...append=( link_to (task[:title], show_path(task[:id])) );@out... +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/index.html.erb:5: syntax error, unexpected ')', expecting keyword_end +...title], show_path(task[:id])) );@output_buffer.safe_append='... +... ^): + app/views/tasks/index.html.erb:5: syntax error, unexpected ',', expecting ')' + app/views/tasks/index.html.erb:5: syntax error, unexpected ')', expecting keyword_end + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.0ms) + + +Started GET "/" for ::1 at 2016-09-28 14:38:53 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 476ms (Views: 475.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:38:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:38:53 -0700 + + +Started GET "/tasks/show.1" for ::1 at 2016-09-28 14:38:56 -0700 +Processing by TasksController#show as +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + +NameError (undefined local variable or method `number' for #): + app/controllers/tasks_controller.rb:21:in `block in show' + app/controllers/tasks_controller.rb:20:in `each' + app/controllers/tasks_controller.rb:20:in `show' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.3ms) + + +Started GET "/" for ::1 at 2016-09-28 14:39:56 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show.2" for ::1 at 2016-09-28 14:39:58 -0700 +Processing by TasksController#show as + Rendered public/404.html (0.3ms) +Completed 404 Not Found in 23ms (Views: 22.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show.1" for ::1 at 2016-09-28 14:40:01 -0700 +Processing by TasksController#show as + Rendered public/404.html (0.0ms) +Completed 404 Not Found in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show.2" for ::1 at 2016-09-28 14:40:57 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/show.2"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.7ms) + + +Started GET "/tasks/show.3" for ::1 at 2016-09-28 14:42:35 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/show.3"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (50.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.3ms) + + +Started GET "/tasks/show.2" for ::1 at 2016-09-28 14:44:37 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/show.2"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (74.9ms) + + +Started GET "/tasks/show.1" for ::1 at 2016-09-28 14:46:42 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/show.1"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (51.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.9ms) + + +Started GET "/tasks/show.2" for ::1 at 2016-09-28 14:48:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/show.2"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (66.4ms) + + +Started GET "/tasks/show.2" for ::1 at 2016-09-28 14:50:51 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/show.2"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (68.4ms) + + +Started GET "/tasks/show.2" for ::1 at 2016-09-28 14:51:37 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/show.2"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (29.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (65.9ms) + + +Started GET "/tasks/show.2" for ::1 at 2016-09-28 14:53:29 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/show.2"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (66.6ms) + + +Started GET "/tasks/show.2" for ::1 at 2016-09-28 14:56:14 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/show.2"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (49.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (78.4ms) + + +Started GET "/" for ::1 at 2016-09-28 14:56:42 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 14:56:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:08:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:5: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +... @mytask[:completed_at] == "" );@output_buffer.safe_append=' +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected keyword_else, expecting ')' + else + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:9: syntax error, unexpected keyword_end, expecting ')' + end + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/show.html.erb:5: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' + app/views/tasks/show.html.erb:7: syntax error, unexpected keyword_else, expecting ')' + app/views/tasks/show.html.erb:9: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (6.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.5ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:09:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:9: void value expression + end );@output_buffer.safe_append=' + ^): + app/views/tasks/show.html.erb:9: void value expression + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (33.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (79.6ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:10:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:8: syntax error, unexpected ')', expecting keyword_end +...on " + @mytask[:completed_at] );@output_buffer.safe_append=' +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/show.html.erb:8: syntax error, unexpected ')', expecting keyword_end + app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.2ms) + + +Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:10:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:8: syntax error, unexpected ')', expecting keyword_end +...+ @mytask[:completed_at].to_s );@output_buffer.safe_append=' +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/show.html.erb:8: syntax error, unexpected ')', expecting keyword_end + app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.9ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:10:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:8: unterminated string meets end of file +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:8: syntax error, unexpected end-of-input, expecting keyword_end): + app/views/tasks/show.html.erb:8: unterminated string meets end of file + app/views/tasks/show.html.erb:8: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:11:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:9: void value expression + end );@output_buffer.safe_append=' + ^): + app/views/tasks/show.html.erb:9: void value expression + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.7ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:11:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:8: syntax error, unexpected ')', expecting keyword_end +...on #{@mytask[:completed_at]}" );@output_buffer.safe_append=' +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/show.html.erb:8: syntax error, unexpected ')', expecting keyword_end + app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.9ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:12:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:9: void value expression + end );@output_buffer.safe_append=' + ^): + app/views/tasks/show.html.erb:9: void value expression + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.4ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:14:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:5: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +... @mytask[:completed_at] == "" );@output_buffer.safe_append=' +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:9: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/show.html.erb:5: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' + app/views/tasks/show.html.erb:7: syntax error, unexpected keyword_else, expecting ')' + app/views/tasks/show.html.erb:9: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (68.1ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:15:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:5: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +... @mytask[:completed_at] == "" );@output_buffer.safe_append=' +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:9: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/show.html.erb:5: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' + app/views/tasks/show.html.erb:7: syntax error, unexpected keyword_else, expecting ')' + app/views/tasks/show.html.erb:9: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (33.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (71.8ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:15:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:5: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +... @mytask[:completed_at] == "" );@output_buffer.safe_append=' +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:9: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/show.html.erb:5: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' + app/views/tasks/show.html.erb:7: syntax error, unexpected keyword_else, expecting ')' + app/views/tasks/show.html.erb:9: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.9ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:17:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:17:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms) From db95d0d3caa8685d04e7c574047da1d07502ad30 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 15:52:57 -0700 Subject: [PATCH 012/103] added delete task button --- app/views/tasks/index.html.erb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 2d5f4fcf9..ab05df9be 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -5,5 +5,7 @@

<%= link_to(task[:title], show_path(task[:id])) %>

<%= task[:description] %>

<%= task[:completed_at] %>

+

<%= button_to( "Delete", destroy_path(task[:id]), method: :delete, data: { confirm: "Are you sure?" }) %>

-<% end %> \ No newline at end of file +<% end %> + From fccbd96188ca6f39307fbfe594c505370f78f915 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 15:53:24 -0700 Subject: [PATCH 013/103] added task destroy route --- config/routes.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/routes.rb b/config/routes.rb index eacddf5b9..baefdd7a7 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -4,7 +4,7 @@ get 'tasks/index' , as: 'index' - get 'tasks/new' + post 'tasks/new' post 'tasks/create' => 'tasks#create' , as: 'create' @@ -16,7 +16,7 @@ get 'tasks/edit' - get 'tasks/destroy' + delete 'tasks/destroy' => 'tasks#destroy' , as: 'destroy' From a5b01f68446e8229232fbb0723e7d155e8c63b47 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 15:54:49 -0700 Subject: [PATCH 014/103] running record of 'the process of learning' (per Chris), aka mistakes --- log/development.log | 303 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 303 insertions(+) diff --git a/log/development.log b/log/development.log index 2c44398ea..13e3de5f2 100644 --- a/log/development.log +++ b/log/development.log @@ -945,3 +945,306 @@ Processing by TasksController#show as HTML Parameters: {"id"=>"3"} Rendered tasks/show.html.erb within layouts/application (0.1ms) Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 15:43:26 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `[]' for nil:NilClass): + 6:

<%= task[:description] %>

+ 7:

<%= task[:completed_at] %>

+ 8: + 9: <% button_to( "Delete", destroy_path(@mytask[:id], method: :delete, data: {confirm: "Are you sure?"})) %> + 10: <% end %> + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___2066266475963563299_70116762463360' + app/views/tasks/index.html.erb:3:in `each' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___2066266475963563299_70116762463360' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (40.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (33.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (70.1ms) + + +Started GET "/" for ::1 at 2016-09-28 15:43:54 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `[]' for nil:NilClass): + 5:

<%= link_to(task[:title], show_path(task[:id])) %>

+ 6:

<%= task[:description] %>

+ 7:

<%= task[:completed_at] %>

+ 8: <% button_to( "Delete", destroy_path(@mytask[:id], method: :delete, data: {confirm: "Are you sure?"})) %> + 9: + 10: <% end %> + app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___2066266475963563299_70116831800940' + app/views/tasks/index.html.erb:3:in `each' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___2066266475963563299_70116831800940' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (29.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (66.8ms) + + +Started GET "/" for ::1 at 2016-09-28 15:43:55 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `[]' for nil:NilClass): + 5:

<%= link_to(task[:title], show_path(task[:id])) %>

+ 6:

<%= task[:description] %>

+ 7:

<%= task[:completed_at] %>

+ 8: <% button_to( "Delete", destroy_path(@mytask[:id], method: :delete, data: {confirm: "Are you sure?"})) %> + 9: + 10: <% end %> + app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___2066266475963563299_70116831800940' + app/views/tasks/index.html.erb:3:in `each' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___2066266475963563299_70116831800940' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (40.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (32.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (73.3ms) + + +Started GET "/" for ::1 at 2016-09-28 15:44:47 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected tIVAR, expecting ')' +@output_buffer.safe_append=' + ^): + app/views/tasks/index.html.erb:9: syntax error, unexpected tIVAR, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (32.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.8ms) + + +Started GET "/" for ::1 at 2016-09-28 15:44:49 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected tIVAR, expecting ')' +@output_buffer.safe_append=' + ^): + app/views/tasks/index.html.erb:9: syntax error, unexpected tIVAR, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (66.9ms) + + +Started GET "/" for ::1 at 2016-09-28 15:47:02 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `[]' for nil:NilClass): + 5:

<%= link_to(task[:title], show_path(task[:id])) %>

+ 6:

<%= task[:description] %>

+ 7:

<%= task[:completed_at] %>

+ 8: <% button_to( "Delete", destroy_path(@mytask[:id]), method: :delete, data: {confirm: "Are you sure?"}) %> + 9: + 10: <% end %> + app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___2066266475963563299_70116834743780' + app/views/tasks/index.html.erb:3:in `each' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___2066266475963563299_70116834743780' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (32.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (70.1ms) + + +Started GET "/" for ::1 at 2016-09-28 15:47:24 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `[]' for nil:NilClass): + 5:

<%= link_to(task[:title], show_path(task[:id])) %>

+ 6:

<%= task[:description] %>

+ 7:

<%= task[:completed_at] %>

+ 8:

<%= button_to( "Delete", destroy_path(@mytask[:id]), method: :delete, data: {confirm: "Are you sure?"}) %>

+ 9: + 10: <% end %> + app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___2066266475963563299_70116777455480' + app/views/tasks/index.html.erb:3:in `each' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___2066266475963563299_70116777455480' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (39.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (70.1ms) + + +Started GET "/" for ::1 at 2016-09-28 15:47:26 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `[]' for nil:NilClass): + 5:

<%= link_to(task[:title], show_path(task[:id])) %>

+ 6:

<%= task[:description] %>

+ 7:

<%= task[:completed_at] %>

+ 8:

<%= button_to( "Delete", destroy_path(@mytask[:id]), method: :delete, data: {confirm: "Are you sure?"}) %>

+ 9: + 10: <% end %> + app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___2066266475963563299_70116777455480' + app/views/tasks/index.html.erb:3:in `each' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___2066266475963563299_70116777455480' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (39.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (69.2ms) + + +Started GET "/" for ::1 at 2016-09-28 15:48:16 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `[]' for nil:NilClass): + 5:

<%= link_to(task[:title], show_path(task[:id])) %>

+ 6:

<%= task[:description] %>

+ 7:

<%= task[:completed_at] %>

+ 8:

<%= button_to( "Delete", destroy_path(@mytask[:id]), method: :delete, data: { confirm: "Are you sure?" }) %>

+ 9: + 10: <% end %> + app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___2066266475963563299_70116762683940' + app/views/tasks/index.html.erb:3:in `each' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___2066266475963563299_70116762683940' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (72.6ms) + + +Started GET "/" for ::1 at 2016-09-28 15:48:28 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (16.4ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `destroy_path' for #<#:0x007f8ab1899818>): + 5:

<%= link_to(task[:title], show_path(task[:id])) %>

+ 6:

<%= task[:description] %>

+ 7:

<%= task[:completed_at] %>

+ 8:

<%= button_to( "Delete", destroy_path(task[:id]), method: :delete, data: { confirm: "Are you sure?" }) %>

+ 9: + 10: <% end %> + app/views/tasks/index.html.erb:8:in `block in _app_views_tasks_index_html_erb___2066266475963563299_70116830396760' + app/views/tasks/index.html.erb:3:in `each' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___2066266475963563299_70116830396760' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (40.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (32.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (76.7ms) + + +Started GET "/" for ::1 at 2016-09-28 15:49:29 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms) From 28ff3ba1db2c98c1bb2724543a6c7d87b955d206 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 16:08:09 -0700 Subject: [PATCH 015/103] added create form --- app/views/tasks/create.html.erb | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/app/views/tasks/create.html.erb b/app/views/tasks/create.html.erb index fcad439c4..70313772c 100644 --- a/app/views/tasks/create.html.erb +++ b/app/views/tasks/create.html.erb @@ -1,2 +1,15 @@ -

Tasks#create

-

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

+

Add a Task

+ +
+ + + + + + + + <%= tag(:input, :type => "hidden", :name => request_forgery_protection_token.to_s, :value => form_authenticity_token) %> + + +
\ No newline at end of file From d64042805309ea777cf9b7a317ec0692dbe75b0a Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 16:08:43 -0700 Subject: [PATCH 016/103] added delete buttons for each item, added button to create form --- app/views/tasks/index.html.erb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index ab05df9be..5fd3e43aa 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -9,3 +9,4 @@ <% end %> +<%= button_to("Add Task", create_path, method: :post) %> \ No newline at end of file From 3b5295bd1f9cbc3f77860417e6e07ad10b1cba46 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 16:09:29 -0700 Subject: [PATCH 017/103] what's been going on --- log/development.log | 157 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) diff --git a/log/development.log b/log/development.log index 13e3de5f2..29f0f61a4 100644 --- a/log/development.log +++ b/log/development.log @@ -1248,3 +1248,160 @@ Started GET "/" for ::1 at 2016-09-28 15:49:29 -0700 Processing by TasksController#index as HTML Rendered tasks/index.html.erb within layouts/application (0.8ms) Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 16:00:39 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:00:39 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:00:39 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:00:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:00:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:00:39 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:00:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:00:39 -0700 + + +Started GET "/" for ::1 at 2016-09-28 16:00:41 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 16:03:40 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 16:03:44 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:03:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:03:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:03:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:03:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:03:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:03:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:03:44 -0700 + + +Started GET "/" for ::1 at 2016-09-28 16:03:55 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_ensure, expecting ')' +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (75.3ms) + + +Started GET "/" for ::1 at 2016-09-28 16:04:08 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_ensure, expecting ')' +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (32.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (70.6ms) + + +Started GET "/" for ::1 at 2016-09-28 16:04:17 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:04:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:04:17 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:04:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:04:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:04:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:04:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:04:17 -0700 + + +Started POST "/tasks/create" for ::1 at 2016-09-28 16:04:19 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"38mKg+izAdQHwWFf+xJtvZ3vd8WYifd4Tkdy9rMhrqk6cVTkJXO1OGM0/qaELZ6EDKW8q4gov4pVSTFunpn9QQ=="} + Rendered tasks/create.html.erb within layouts/application (0.4ms) +Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-28 16:04:26 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"saldkj", "description"=>"lksjdflkj\t", "authenticity_token"=>"zT7hjW83Tckgu5yoBUIxEGdC0bkYL2qy/EiNNCUARTQohj/qovf5JUROA1F6fcIp9gga1wiOIkDnRs6sCLgW3A=="} + Rendered tasks/create.html.erb within layouts/application (0.1ms) +Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms) From f5ff8d5d8ea97a65df928bb7665e47ccb5ab155f Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 16:20:12 -0700 Subject: [PATCH 018/103] typo --- app/controllers/tasks_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index d3ee1eb14..5f64f78a0 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -7,7 +7,7 @@ def index end def new - end + end def create @params = params From 26181b7ad62cc6807284dc55b1d6c5c8058b6e11 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 16:22:22 -0700 Subject: [PATCH 019/103] added task model --- app/models/task.rb | 2 ++ db/development.sqlite3 | Bin 0 -> 20480 bytes db/migrate/20160928232143_create_tasks.rb | 12 +++++++++++ db/schema.rb | 25 ++++++++++++++++++++++ log/development.log | 10 +++++++++ test/fixtures/tasks.yml | 13 +++++++++++ test/models/task_test.rb | 7 ++++++ 7 files changed, 69 insertions(+) create mode 100644 app/models/task.rb create mode 100644 db/migrate/20160928232143_create_tasks.rb create mode 100644 db/schema.rb create mode 100644 test/fixtures/tasks.yml create mode 100644 test/models/task_test.rb diff --git a/app/models/task.rb b/app/models/task.rb new file mode 100644 index 000000000..935f76e12 --- /dev/null +++ b/app/models/task.rb @@ -0,0 +1,2 @@ +class Task < ActiveRecord::Base +end diff --git a/db/development.sqlite3 b/db/development.sqlite3 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..681dac43f3520aa8e4edf062e8491759658000aa 100644 GIT binary patch literal 20480 zcmeI&&u;juWL-G?ZFUB(>5p?~ugkOQ!PW=rC72 zyZYSn*Gyx;%NXd7t@}fMro0zs!=Z)CE@A98JsI1<{Ul(6s|8a54+}y1FH28%A z0SG_<0uX=z1Rwwb2tWV=5P-l&2<(~_w{dv%?C`kpqS0&|J#B9Dxsd;F#O2};5P$## zAOHafKmY;|fB*y_0D-x{Bg=iTn*W!-|MQ>zQ6K;T2tWV=5P$##AOHafKmY;|*kA$V e{~LU{I2r^X009U<00Izz00bZa0SG`~F7OK^>e8YB literal 0 HcmV?d00001 diff --git a/db/migrate/20160928232143_create_tasks.rb b/db/migrate/20160928232143_create_tasks.rb new file mode 100644 index 000000000..56b792724 --- /dev/null +++ b/db/migrate/20160928232143_create_tasks.rb @@ -0,0 +1,12 @@ +class CreateTasks < ActiveRecord::Migration + def change + create_table :tasks do |t| + t.string :title + t.text :description + t.datetime :completed_at + t.string :owner + + t.timestamps null: false + end + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..83b4c63ac --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,25 @@ +# 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: 20160928232143) do + + create_table "tasks", force: :cascade do |t| + t.string "title" + t.text "description" + t.datetime "completed_at" + t.string "owner" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + +end diff --git a/log/development.log b/log/development.log index 29f0f61a4..bde843a61 100644 --- a/log/development.log +++ b/log/development.log @@ -1405,3 +1405,13 @@ Processing by TasksController#create as HTML Parameters: {"title"=>"saldkj", "description"=>"lksjdflkj\t", "authenticity_token"=>"zT7hjW83Tckgu5yoBUIxEGdC0bkYL2qy/EiNNCUARTQohj/qovf5JUROA1F6fcIp9gga1wiOIkDnRs6sCLgW3A=="} Rendered tasks/create.html.erb within layouts/application (0.1ms) Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms) +  (1.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") + ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160928232143) +  (0.0ms) begin transaction +  (0.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "completed_at" datetime, "owner" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160928232143"]] +  (0.5ms) commit transaction + ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" diff --git a/test/fixtures/tasks.yml b/test/fixtures/tasks.yml new file mode 100644 index 000000000..7cb4c2e23 --- /dev/null +++ b/test/fixtures/tasks.yml @@ -0,0 +1,13 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + title: MyString + description: MyText + completed_at: 2016-09-28 16:21:43 + owner: MyString + +two: + title: MyString + description: MyText + completed_at: 2016-09-28 16:21:43 + owner: MyString diff --git a/test/models/task_test.rb b/test/models/task_test.rb new file mode 100644 index 000000000..3ca215970 --- /dev/null +++ b/test/models/task_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TaskTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 3dd7c156b5cdf3782f94ff1146bfd6e95e9a5bea Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Wed, 28 Sep 2016 17:46:26 -0700 Subject: [PATCH 020/103] working add form button stuff --- .gitignore | 4 + app/controllers/tasks_controller.rb | 13 +- app/views/tasks/create.html.erb | 18 +- app/views/tasks/index.html.erb | 2 +- app/views/tasks/new.html.erb | 16 +- config/routes.rb | 10 +- db/development.sqlite3 | Bin 20480 -> 20480 bytes log/development.log | 1508 +++++++++++++++++++++++++++ 8 files changed, 1550 insertions(+), 21 deletions(-) diff --git a/.gitignore b/.gitignore index 28f484983..a0353207c 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,7 @@ build/ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: .rvmrc + +#hide logs + +/log/development.log diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 5f64f78a0..6320690e2 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -3,21 +3,24 @@ class TasksController < ApplicationController skip_before_filter :verify_authenticity_token def index - @tasks = TasksController.alltasks + @tasks = Task.all end def new + @task = Task.new end def create @params = params - @title = params[:title] - @description = params[:description] - @completed_at = params[:completed_at] + @title = params[:task][:title] + @description = params[:task][:description] + @completed_at = params[:task][:completed_at] + @owner = params[:task][:owner] + Task.create(title: @title, description: @description, completed_at: @completed_at, owner: @owner) end def show - @tasks = TasksController.alltasks + @tasks = Task.all @mytask = nil @tasks.each do |task| diff --git a/app/views/tasks/create.html.erb b/app/views/tasks/create.html.erb index 70313772c..75334d671 100644 --- a/app/views/tasks/create.html.erb +++ b/app/views/tasks/create.html.erb @@ -1,15 +1,15 @@

Add a Task

-
+<%= form_for :task do |f| %> + <% f.label :title %> + <% f.text_field :title %> - - + <% f.label :description %> + <% f.text_field :description %> - - + <% f.label :owner %> + <% f.text_field :owner %> + <% f.submit %> +<% end %> - <%= tag(:input, :type => "hidden", :name => request_forgery_protection_token.to_s, :value => form_authenticity_token) %> - -
\ No newline at end of file diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 5fd3e43aa..a21c9dff8 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -9,4 +9,4 @@ <% end %> -<%= button_to("Add Task", create_path, method: :post) %> \ No newline at end of file +<%= button_to("Add Task", new_path, method: :get) %> \ No newline at end of file diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 2484008a3..6b8911304 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,2 +1,14 @@ -

Tasks#new

-

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

+

Add a Task

+ +<%= form_for @task do |f| %> + + <%= f.label :title %> + <%= f.text_field :title %> + + <%= f.label :description %> + <%= f.text_field :description %> + + <%= f.label :owner %> + <%= f.text_field :owner %> + <%= f.submit %> +<% end %> diff --git a/config/routes.rb b/config/routes.rb index baefdd7a7..6612a852c 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -2,17 +2,19 @@ root to: 'tasks#index' - get 'tasks/index' , as: 'index' + get 'tasks' => 'tasks#index' , as: 'tasks' - post 'tasks/new' + get 'tasks/new' => 'tasks#new' , as: 'new' - post 'tasks/create' => 'tasks#create' , as: 'create' + + + post 'tasks' => 'tasks#create' , as: 'create' get 'tasks/show/:id' => 'tasks#show' , as: 'show' - get 'tasks/update' + put 'tasks/update' get 'tasks/edit' diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 681dac43f3520aa8e4edf062e8491759658000aa..d188e7de82e111c376d890d2671d36d8fcae4204 100644 GIT binary patch literal 20480 zcmeI)!Ec*Z90zcSo!Uul)AcZ~+97XTTB{9t@Guy}q|yyl(OjoZY-y1uMQ`RMCdQB& zl61#tw;e0>(*LHX?YQIqf*p73eGj)uuw6E3+M%j`FD3zg@B4Usu%jR+*?ZOvQicxW z>4c_;2)6`L6docZ2*Pc?tn%fumH0~ea)W;rbL&N`w}s6=*Xz7muKy}XFQsbZ4qt%= z0w4eaAOHd&00JNY0w4eaAn;!Wo|bPk@81{qQ~G1blIJ16r#nd4^HUZL7dKbG+4bDM zhx+cLu7?)--izpjJ>bdKMOdmdn@#a&b2es5lW{WpRG!PrvwbqUCkMWawtIc=vA2t! z?ruMEclXhE-ac{%{hjR|4?XdEebn3G%b?qRfaEktLnfm$IvtMal<)9aGMok{X%I&; zO4*B)?;FOGlaQs%KcK0Me44T};4?&Wd>*lBK0TZ=UY+lkKiug_mM*BbE-EXP=GR-| z#a0mc?8RvmaJ++LIARleFbR&PG@Dkkw4?N1W6;}vHt;yWx8CyeqVQjSL)A@?C zR-85zLJR|UmeZFNr&^FUY!xdOZtEOw?uu%;ic={_V;h@_YMI8Oxt6OqH$I$JEgNG+ zZ|h5H`HHhzknY$TQFPTH{C(%SnX9>qQ!YpwHZl0j`NYkIbgtr+s=~(X`MMWRSUL)# zqpQvxq!C+h+ig{`h}F@q`IagdrIo7imF3=b-5yP7h|Xy;+K*3>A4hjnz7?e?jnO!Y z&##6zvscyZ!Jk)I>yP-K(#H`)A@zT{>NY!;#%EzF*d%)UnqsLEh*hB_xJ}o6Op|mP z3{jV!(Ib`{YvGW4G)b;sqf0Z&1vv$u1nwv*Cc55v_xt~E1?la_@XZY700JNY0w4ea dAOHd&00JNY0w4eaAn?Bltcj(jIQz#9(%;#1xzqpv delta 45 scmZozz}T>Wae_1>^F$eEM&^wPOZ1r-1U3sgJmH@>L5z);0SMq+03"uYMrniqHWPwFBi9GylExy4ByhF4plUo3XYUvcQ9Wj2lcO/X550fsEGHzsL+1bsLyEThPMDk0AsVGi2zpIu7cgQ=="} + Rendered tasks/create.html.erb within layouts/application (0.1ms) +Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-28 16:27:18 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"Gastric Lavage", "description"=>"Something or rather\t", "authenticity_token"=>"Nki9/Vboyv1vPeSmfVFsDl4Ni8hkSefmBEjQDqbV5mnT8GOamyh+EQvIe18Cbp83z0dApnTorxQfRpOWi221gQ=="} + Rendered tasks/create.html.erb within layouts/application (0.2ms) +Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 16:27:30 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 16:28:02 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `all' for TasksController:Class +Did you mean? call): + app/controllers/tasks_controller.rb:6:in `index' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (29.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (66.4ms) + + +Started GET "/" for ::1 at 2016-09-28 16:39:01 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `all' for TasksController:Class +Did you mean? call): + app/controllers/tasks_controller.rb:6:in `index' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (71.8ms) + + +Started GET "/" for ::1 at 2016-09-28 16:40:29 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `each' for nil:NilClass): + 1:

Task List

+ 2: + 3: <% @tasks.each do |task| %> + 4:
+ 5:

<%= link_to(task[:title], show_path(task[:id])) %>

+ 6:

<%= task[:description] %>

+ app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___2066266475963563299_70116773798240' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (66.8ms) + + +Started GET "/" for ::1 at 2016-09-28 16:41:12 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NameError (uninitialized constant TasksController::Tasks): + app/controllers/tasks_controller.rb:6:in `index' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.1ms) + + +Started GET "/" for ::1 at 2016-09-28 16:41:21 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +NameError (undefined local variable or method `tasks' for #): + app/controllers/tasks_controller.rb:6:in `index' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.1ms) + + +Started GET "/" for ::1 at 2016-09-28 16:41:24 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +NameError (undefined local variable or method `task' for #): + app/controllers/tasks_controller.rb:6:in `index' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (70.8ms) + + +Started GET "/" for ::1 at 2016-09-28 16:41:57 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `all' for TasksController:Class +Did you mean? call): + app/controllers/tasks_controller.rb:6:in `index' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (71.0ms) + + +Started GET "/" for ::1 at 2016-09-28 16:43:03 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `all' for TasksController:Class +Did you mean? call): + app/controllers/tasks_controller.rb:6:in `index' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.4ms) + + +Started GET "/" for ::1 at 2016-09-28 16:43:21 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-28 16:44:39 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"54HyRJGOVWLknxiuWSaQ9Gy2/H9xL2GKtbM7odAOqc8COSwjXE7hjoBqh1cmGWPN/fw3EWGOKXiuvXg5/bb6Jw=="} + Rendered tasks/create.html.erb within layouts/application (1.8ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <% f.label :title %> + 6: <% f.text_field :title %> + app/views/tasks/create.html.erb:3:in `_app_views_tasks_create_html_erb__841880029140958201_70116856236380' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (69.5ms) +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Something"], ["created_at", "2016-09-28 23:45:51.939825"], ["updated_at", "2016-09-28 23:45:51.939825"]] +  (1.4ms) commit transaction + Task Load (1.2ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/" for ::1 at 2016-09-28 16:47:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-28 16:47:27 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"oQgyibeSt7iykbX9R4CzDSYY/brJqyWyF+kIUR3rIV9EsOzuelIDVNZkKgQ4v0A0t1I21NkKbUAM50vJMFNytw=="} + Rendered tasks/create.html.erb within layouts/application (1.7ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <% f.label :title %> + 6: <% f.text_field :title %> + app/views/tasks/create.html.erb:3:in `_app_views_tasks_create_html_erb__841880029140958201_70116856236380' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.5ms) + + +Started GET "/" for ::1 at 2016-09-28 16:48:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-28 16:48:38 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"P/KEVxpppH+gbO+Bs+sAqleSOnFXvWJLClInHXTExAjaSlow16kQk8SZcHjM1POTxtjxH0ccKrkRXGSFWXyX4A=="} + Rendered tasks/create.html.erb within layouts/application (1.7ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <% f.label :title %> + 6: <% f.text_field :title %> + app/views/tasks/create.html.erb:3:in `_app_views_tasks_create_html_erb__841880029140958201_70116856236380' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (33.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (70.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:56:28 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:57:48 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (15.2ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007f8ab5326490> +Did you mean? tasks_new_path): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <% f.label :title %> + 6: <% f.text_field :title %> + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4086087181073643586_70116861093920' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (66.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:58:56 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (13.0ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007f8ab2083740> +Did you mean? tasks_update_path): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <% f.label :title %> + 6: <% f.text_field :title %> + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4086087181073643586_70116861093920' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (36.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (32.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (68.7ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:58:59 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (14.9ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007f8ab1c47960> +Did you mean? tasks_update_path): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <% f.label :title %> + 6: <% f.text_field :title %> + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4086087181073643586_70116861093920' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.8ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:59:07 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.4ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:59:50 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (14.2ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007f8aa9527610> +Did you mean? task_path): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <% f.label :title %> + 6: <% f.text_field :title %> + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4086087181073643586_70116778621360' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (68.9ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:00:02 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 12.1ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks/new" for ::1 at 2016-09-28 17:00:05 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/new"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (29.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (66.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:00:51 -0700 + +ArgumentError (Invalid route name, already in use: 'tasks' +You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here: +http://guides.rubyonrails.org/routing.html#restricting-the-routes-created): + config/routes.rb:9:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (66.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:01:02 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 13.5ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/new" for ::1 at 2016-09-28 17:01:05 -0700 +Processing by TasksController#new as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"u8VkxDR64YYzgrJRnYOChTIaB1CRjJHTYAjLDvbhP9hefbqj+bpVald3LajivHG8o1DMPoEt2SF7BoiW21lsMA==", "commit"=>"Create Task"} + Rendered tasks/new.html.erb within layouts/application (1.1ms) +Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/new" for ::1 at 2016-09-28 17:01:06 -0700 +Processing by TasksController#new as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"tFi+869yprIYAU5+QWWogvhVvdejEnmEi5NtnAefBrFR4GCUYrISXnz00Yc+Wlu7aR92ubOzMXaQnS4EKidVWQ==", "commit"=>"Create Task"} + Rendered tasks/new.html.erb within layouts/application (1.1ms) +Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:02:25 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/new" for ::1 at 2016-09-28 17:02:42 -0700 +Processing by TasksController#new as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Aue+eVLG2rSYAvLOPeSpaYVu3g8begCNX+XU96BjK1bnX2AenwZuWPz3bTdC21pQFCQVYQvbSH9E65dvjdt4vg==", "task"=>{"title"=>"learn rails", "description"=>"the hard way", "owner"=>"me"}, "commit"=>"Create Task"} + Rendered tasks/new.html.erb within layouts/application (1.4ms) +Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 17:02:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-28 17:05:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-28 17:05:23 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"q462prSr7V0/yUoU/HHQk0Pjxukbsq6jSptDppAea+JONmjBeWtZsVs81e2DTiOq0qkNhwsT5lFRlQA+vaY4Cg=="} + Rendered tasks/create.html.erb within layouts/application (1.9ms) +Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/create" for ::1 at 2016-09-28 17:05:41 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/create"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (50.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (32.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (71.9ms) + + +Started GET "/tasks/create" for ::1 at 2016-09-28 17:06:29 -0700 + +ArgumentError (Invalid route name, already in use: 'tasks' +You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here: +http://guides.rubyonrails.org/routing.html#restricting-the-routes-created): + config/routes.rb:10:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (68.0ms) + + +Started GET "/" for ::1 at 2016-09-28 17:06:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (21.1ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined method `show_path' for #<#:0x007f8ab5278f20>): + 2: + 3: <% @tasks.each do |task| %> + 4:
+ 5:

<%= link_to(task[:title], show_path(task[:id])) %>

+ 6:

<%= task[:description] %>

+ 7:

<%= task[:completed_at] %>

+ 8:

<%= button_to( "Delete", destroy_path(task[:id]), method: :delete, data: { confirm: "Are you sure?" }) %>

+ app/views/tasks/index.html.erb:5:in `block in _app_views_tasks_index_html_erb___2066266475963563299_70116773798240' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___2066266475963563299_70116773798240' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (70.7ms) + + +Started GET "/" for ::1 at 2016-09-28 17:07:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/3" for ::1 at 2016-09-28 17:07:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-28 17:07:13 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"rZIJ0I4Isvup4ya2p04UxsGGLPwJYSTfDViAkVCP9sxIKte3Q8gGF80WuU/Ycef/UMznkhnAbC0WVsMJfTelJA=="} + Rendered tasks/create.html.erb within layouts/application (1.0ms) +Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 17:07:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:07:48 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (14.3ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007f8ab1facad8> +Did you mean? tasks_update_path): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <%= f.label :title %> + 6: <%= f.text_field :title %> + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4086087181073643586_70116857597040' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.7ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:08:10 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (15.2ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007f8ab1b24768> +Did you mean? task_path): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <%= f.label :title %> + 6: <%= f.text_field :title %> + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4086087181073643586_70116857597040' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (39.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.9ms) + + +Started GET "/" for ::1 at 2016-09-28 17:08:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (20.2ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `new_path' for #<#:0x007f8ab5802fb8> +Did you mean? view_paths): + 9:
+ 10: <% end %> + 11: + 12: <%= button_to("Add Task", new_path, method: :get) %> + app/views/tasks/index.html.erb:12:in `_app_views_tasks_index_html_erb___2066266475963563299_70116860199680' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (33.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (70.0ms) + + +Started GET "/" for ::1 at 2016-09-28 17:08:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:08:44 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (15.6ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007f8ab528a130> +Did you mean? tasks_update_path): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <%= f.label :title %> + 6: <%= f.text_field :title %> + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4086087181073643586_70116857597040' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:08:53 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (14.5ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007f8ab40c2240> +Did you mean? tasks_update_path): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <%= f.label :title %> + 6: <%= f.text_field :title %> + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4086087181073643586_70116857597040' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:09:13 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (17.1ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007f8ab0e09100> +Did you mean? tasks_update_path): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <%= f.label :title %> + 6: <%= f.text_field :title %> + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4086087181073643586_70116857597040' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (35.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (73.1ms) + + +Started GET "/" for ::1 at 2016-09-28 17:11:25 -0700 + +ArgumentError (Missing :controller key on routes definition, please check your routes.): + config/routes.rb:5:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (33.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (75.0ms) + + +Started GET "/" for ::1 at 2016-09-28 17:11:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:11:48 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:11:54 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (51.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (33.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (75.4ms) + + +Started GET "/" for ::1 at 2016-09-28 17:12:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:12:26 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.9ms) +Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:12:32 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ebinuAcf3TnFOQigF4G2P2bxCsnklxyayquA4W83C5ycAHnfyt9p1aHMl1lovkUG97vBp/Q2VGjRpcN5Qo9YdA==", "task"=>{"title"=>"s", "description"=>"d", "owner"=>"f"}, "commit"=>"Create Task"} + Rendered tasks/create.html.erb within layouts/application (1.1ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 17:12:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-28 17:15:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:16:00 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:16:05 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"eVIB7vb4GPRzehXniNgPk6+G9mYpmft0me+cofR2EC+c6t+JOzisGBePih735/yqPsw9CDk4s4aC4d852c5Dxw==", "task"=>{"title"=>"x", "description"=>"y", "owner"=>"z"}, "commit"=>"Create Task"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError): + app/controllers/tasks_controller.rb:19:in `create' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (30.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (67.3ms) + + +Started GET "/" for ::1 at 2016-09-28 17:16:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:16:32 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:16:36 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"w7JfTVmB+4vnwBBOORe2tV2qie3Mi95cij0+TDFkMHMmCoEqlEFPZ4M1j7dGKEWMzOBCg9wqlq6RM33UHNxjmw==", "task"=>{"title"=>"x", "description"=>"y", "owner"=>"z"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-09-29 00:16:36.196437"], ["updated_at", "2016-09-29 00:16:36.196437"]] +  (0.6ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 9.9ms | ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-09-28 17:16:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/4" for ::1 at 2016-09-28 17:16:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-28 17:18:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:18:19 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:18:23 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"VjPOfFEMrPiPfVPb0kLl07fq67aVC6BiduNolOVnAAuzixAbnMwYFOuIzCKtfRbqJqAg2IWq6JBt7SsMyN9T4w==", "task"=>{"title"=>"s", "description"=>"d", "owner"=>"f"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-09-29 00:18:23.416309"], ["updated_at", "2016-09-29 00:18:23.416309"]] +  (0.4ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.9ms) +Completed 200 OK in 13ms (Views: 10.8ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-09-28 17:18:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/5" for ::1 at 2016-09-28 17:18:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-28 17:18:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:18:54 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:19:00 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ge3vf6ZJxCAgMgK6fKFF6a2OW2a9996YzcYokxhngjBkVTEYa4lwzETHnUMDnrbQPMSQCK1WlmrWyGsLNd/R2A==", "task"=>{"title"=>"x", "description"=>"y", "owner"=>"z"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-09-29 00:19:00.454999"], ["updated_at", "2016-09-29 00:19:00.454999"]] +  (0.5ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 11.1ms | ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-09-28 17:19:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-28 17:20:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:20:02 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.3ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:20:07 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"LPTsnqkszvVLg709J88qbwbrJWnxxIqIl75g/C+kGf7JTDL5ZOx6GS92IsRY8NlWl6HuB+FlwnqMsCNkAhxKFg==", "task"=>{"title"=>"x", "description"=>"y", "owner"=>"z"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-09-29 00:20:07.197643"], ["updated_at", "2016-09-29 00:20:07.197643"]] +  (0.5ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 12.5ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-09-28 17:20:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/7" for ::1 at 2016-09-28 17:20:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:21:07 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 21ms (Views: 16.4ms | ActiveRecord: 0.5ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:21:11 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"v84oUO3Y6K69rXg2RcdUkzIKtgtTzkD4Y6KBmHY9I09advY3IBhcQtlY5886+Keqo0B9ZUNvCAp4rMIAW4Vwpw==", "task"=>{"title"=>"x", "description"=>"y", "owner"=>"z"}, "commit"=>"Create Task"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError): + app/controllers/tasks_controller.rb:19:in `create' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (33.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (72.0ms) + + +Started GET "/" for ::1 at 2016-09-28 17:22:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:24:23 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms) + + +Started DELETE "/tasks/destroy.1" for ::1 at 2016-09-28 17:25:48 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"8lJpVv1yY7WCdGOjZ33EpDgGHUhw8Xu9LzQ+hRrZeM4X6rcxMLLXWeaB/FoYQjedqUzWJmBQM080On0dN2ErJg=="} + Rendered tasks/destroy.html.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:26:01 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.3ms) +Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:26:10 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"WXD9nZDyW0YPtFk/Ky6QYB9PxxUCA+zJK+d99/351qO8yCP6XTLvqmtBxsZUEWNZjgUMexKipDsw6T5v0EGFSw==", "task"=>{"title"=>"spencer", "description"=>"dishes", "owner"=>"kalsjdflk"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-09-29 00:26:10.905405"], ["updated_at", "2016-09-29 00:26:10.905405"]] +  (0.6ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.9ms) +Completed 200 OK in 13ms (Views: 10.9ms | ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-09-28 17:26:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-28 17:26:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2016-09-28 17:29:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 29ms (Views: 27.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:29:49 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:29:56 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"g6eRuQjXEQRxHF3SJcZ29I38lY8WB75lLaaewH7tABhmH0/exRel6BXpwita+YXNHLZe4Qam9pc2qN1YU1VT8A==", "task"=>{"title"=>"jhgf", "description"=>"ljkh", "owner"=>"lkjh"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-09-29 00:29:56.336608"], ["updated_at", "2016-09-29 00:29:56.336608"]] +  (0.5ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 12.3ms | ActiveRecord: 0.7ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:29:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"gA40rqiZCaZhjl8Gldk+64kJ5DrGMxYR+qH2WZeulDtlturJZVm9SgV7wP/q5s3SGEMvVNaSXuPhr7XBuhbH0w==", "commit"=>"Save Task"} +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-09-29 00:29:58.690065"], ["updated_at", "2016-09-29 00:29:58.690065"]] +  (2.4ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 11.5ms | ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-28 17:30:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-28 17:34:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:34:58 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.0ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:35:02 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"OZ7Oqys1yZg6rVqmuOjXobnN1EGwbosduanwWrRaaK/cJhDM5vV9dF5YxV/H1ySYKIcfL6DPw++ip7PCmeI7Rw==", "task"=>{"title"=>"s", "description"=>"d", "owner"=>"f"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-09-29 00:35:03.001999"], ["updated_at", "2016-09-29 00:35:03.001999"]] +  (0.5ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.8ms) + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

Add a Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <% f.label :title %> + 6: <% f.text_field :title %> + app/views/tasks/create.html.erb:3:in `_app_views_tasks_create_html_erb__841880029140958201_70116841642080' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (80.0ms) + + +Started GET "/" for ::1 at 2016-09-28 17:36:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:36:54 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.2ms) +Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:37:01 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ExjNQHWforpvp4e9/DUY4p21QtzZxJz1elbHN+w9Fgj2oBMnuF8WVgtSGESDCuvbDP+Jssll1AdhWISvwYVF4A==", "task"=>{"title"=>"x", "description"=>"y", "owner"=>"z"}, "commit"=>"Create Task"} +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-09-29 00:37:01.201676"], ["updated_at", "2016-09-29 00:37:01.201676"]] +  (0.5ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (1.5ms) +Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-09-28 17:37:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:39:22 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.9ms) +Completed 200 OK in 26ms (Views: 21.2ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:39:26 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"0s8dD+W6fxA2kPFE/LfuQhcSyN0vZbXqojEk7qJDJmE3d8NoKHrL/FJlbr2DiB17hlgDsz/E/Ri5P2d2j/t1iQ==", "task"=>{"title"=>"asdf", "description"=>"asdf", "owner"=>"sadf"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-09-29 00:39:26.605243"], ["updated_at", "2016-09-29 00:39:26.605243"]] +  (0.5ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 12.2ms | ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-09-28 17:41:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 28ms (Views: 26.2ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:41:41 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.2ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:41:46 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"InFuoCtjuLVfl8Pdshu2/voEaxB/UXfvfXo2hu9DrPrHybDH5qMMWTtiXCTNJEXHa06gfm/wPx1mdHUewvv/Eg==", "task"=>{"title"=>"magic", "description"=>"magic", "owner"=>"magic"}, "commit"=>"Create Task"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError): + app/controllers/tasks_controller.rb:21:in `create' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/" for ::1 at 2016-09-28 17:42:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:42:26 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.3ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:42:33 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"RC1w507+q17DZRnDnspFOyZEiHJVIHvV5hivCIIUPSShla6Agz4fsqeQhjrh9bYCtw5DHEWBMyf9FuyQr6xuzA==", "task"=>{"title"=>"lalala", "description"=>"lalala", "owner"=>"lalala"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "lalala"], ["created_at", "2016-09-29 00:42:33.763713"], ["updated_at", "2016-09-29 00:42:33.763713"]] +  (0.5ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 12.0ms | ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-09-28 17:42:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-28 17:42:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 17:44:17 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.8ms) +Completed 200 OK in 20ms (Views: 16.0ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks" for ::1 at 2016-09-28 17:44:21 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"p5Z8AYEfHPIw9xy/JylN6kmkaeG5ICtu2jZjVTb+a3RCLqJmTN+oHlQCg0ZYFr7T2O6ij6mBY5zBOCDNG0Y4nA==", "task"=>{"title"=>"sjkdhfa", "description"=>"kjhsakdjf", "owner"=>"hkjsahdkf"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("title", "description", "owner", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "sjkdhfa"], ["description", "kjhsakdjf"], ["owner", "hkjsahdkf"], ["created_at", "2016-09-29 00:44:21.423940"], ["updated_at", "2016-09-29 00:44:21.423940"]] +  (0.6ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (1.0ms) +Completed 200 OK in 14ms (Views: 11.1ms | ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2016-09-28 17:44:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) From 17d224e8ee0ba51b338b4d73e63630161eb26226 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Thu, 29 Sep 2016 17:00:28 -0700 Subject: [PATCH 021/103] added delete method --- app/controllers/tasks_controller.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 6320690e2..ecb18a990 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -17,6 +17,7 @@ def create @completed_at = params[:task][:completed_at] @owner = params[:task][:owner] Task.create(title: @title, description: @description, completed_at: @completed_at, owner: @owner) + redirect_to root_path end def show @@ -43,6 +44,9 @@ def edit end def destroy + @mytask = Task.find_by(params[:id]) + @mytask.destroy + redirect_to root_path end From 77269f00a70618300a28cff86f810ae0fb5e1b6d Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Thu, 29 Sep 2016 17:00:50 -0700 Subject: [PATCH 022/103] deleted blank records --- db/development.sqlite3 | Bin 20480 -> 20480 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/db/development.sqlite3 b/db/development.sqlite3 index d188e7de82e111c376d890d2671d36d8fcae4204..17582ffc38f90d5191e95a800f3f2dbaafcad3b6 100644 GIT binary patch delta 377 zcmZozz}T>Wae_3X;zSu|M#YT@3-wibVi;Js4>Isba3AE~#Gk=^5F6asIGcO&LF?Hp z3=GUXlM`&LK#VjXLv-?48}7;bY@|Q}8ejo#Tkgq!zyeIKfC3_u^=#FEvP^5hoE!)z z56oEw;TV89FTfnePm=@eL?^4;sRH#dZUJ&Yb}^QLMfciqPhMvSvWwAT@)e%E-h@`{HaP14A=i14~^aO9dliD^qhTV?#YdGfN9g zW85-60vrs|(jb%EGV?%2h36M#XXd42G0nh8&(y%o*wWlc65S%W)Fy}j{EUJCzzJdK delta 355 zcmZozz}T>Wae_3X&_o$$Mxl)f3-whQ7#R4u4>Isi<>%)+!Pmv-!^g*afp-#b2(K8= z4W3y%F+3972RAm(=AL}edNzv`%+ z1h~KgB9rxO)mUsep`08LhXcx41>&$nIWIsQHXtX!PIR)mohpkBE0_bciv=pW*N%Jg zIy)&AS7xBV89Qf|MrJ0C$-?%bDY`}$3P#3OMy6J#=6VL^#wMngMh1pvx(1e5WHK2! z7&I9i#T^~p6N^iVGLsd263Y_PQ;~ES7+8Uko&gvHCl(hcPPVd_l0s4gvCqIl&(Ofw N#KdBg!+(B8egMDjRyF_t From e5469765d31bb5f178ce705df4f65228281b42b5 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Fri, 30 Sep 2016 09:20:42 -0700 Subject: [PATCH 023/103] added debugging tools better_errors and binding_of_caller --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index e87fad5fc..e5fc837eb 100644 --- a/Gemfile +++ b/Gemfile @@ -43,5 +43,7 @@ group :development do # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' + gem "better_errors" + gem "binding_of_caller" end From b4ca9c059f3361bac7b6c1c7c90d21b54fd8ae63 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Fri, 30 Sep 2016 09:21:41 -0700 Subject: [PATCH 024/103] did bundle intall and db:migrate --- Gemfile.lock | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Gemfile.lock b/Gemfile.lock index 187046034..4d6c84fe6 100644 --- a/Gemfile.lock +++ b/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 (9.0.5) + coderay (1.1.1) coffee-rails (4.1.1) coffee-script (>= 2.2.0) railties (>= 4.0.0, < 5.1.x) @@ -146,6 +151,8 @@ PLATFORMS ruby DEPENDENCIES + better_errors + binding_of_caller byebug coffee-rails (~> 4.1.0) jbuilder (~> 2.0) From 148d7181b15665696594b4d23c119926c85eecde Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Fri, 30 Sep 2016 10:28:59 -0700 Subject: [PATCH 025/103] working on edit and update methods --- app/controllers/tasks_controller.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index ecb18a990..5b5fa0315 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -38,9 +38,18 @@ def show end def update + @mytask = Task.find_by(params[:id]) + + @mytask.title = params[:title] + @mytask.description = params[:description] + @mytask.completed_at = params[:completed_at] + + @mytask.save + show end def edit + @mytask = Task.find_by(params[:id]) end def destroy From c72c715d7c5b8dbd540eb41623af477d5e14dd8c Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Fri, 30 Sep 2016 10:29:23 -0700 Subject: [PATCH 026/103] working on edit form --- app/views/tasks/edit.html.erb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index 374190308..16d4dda48 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,2 +1,3 @@ -

Tasks#edit

-

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

+

Update Task Status

+ +form \ No newline at end of file From 79364e3fbe3a923ca5b2831acf5c5fe20b616aaa Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Fri, 30 Sep 2016 10:29:39 -0700 Subject: [PATCH 027/103] added an update button --- app/views/tasks/show.html.erb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 9c7f491cb..828ef3043 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -4,8 +4,9 @@

Completion Status: <% if @mytask[:completed_at] == nil || @mytask[:completed_at] == "" %> Not done - <% else %> + <% else %> Done on <%= @mytask[:completed_at] %> - <% end %> + <% end %> +

<%= button_to( "Update", update_path(@mytask[:id]), method: :patch) %>

\ No newline at end of file From cac6a152c80773fab50fc02feb8c3b9026c91738 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Fri, 30 Sep 2016 10:30:10 -0700 Subject: [PATCH 028/103] added update route --- config/routes.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/routes.rb b/config/routes.rb index 6612a852c..f0da75bad 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -12,9 +12,9 @@ get 'tasks/show/:id' => 'tasks#show' , as: 'show' + get 'tasks/update' => 'tasks#update' - - put 'tasks/update' + patch 'tasks/update' => 'tasks#update' , as: 'update' get 'tasks/edit' From 51c230c12961f27d9fdc2da0e856476a11ca4219 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Fri, 30 Sep 2016 10:30:29 -0700 Subject: [PATCH 029/103] working on update form, not sure if go with edit or update --- app/views/tasks/update.html.erb | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/app/views/tasks/update.html.erb b/app/views/tasks/update.html.erb index fdb1ea609..0dd988e7a 100644 --- a/app/views/tasks/update.html.erb +++ b/app/views/tasks/update.html.erb @@ -1,2 +1,20 @@ -

Tasks#update

-

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

+

Update Task Status

+
+

Title: <%= @mytask[:title] %>

+

Description: <%= @mytask[:description] %>

+ +<%= form_for @task do |f| %> + <%= f.check_box :completed_at %> + <% if check_box.checked_value == "1" %> + @mytask[:completed_at] = Datetime.now + <% end %> + +

Completion Status: + <% if @mytask[:completed_at] == nil || @mytask[:completed_at] == "" %> + Not done + <% else %> + Done on <%= @mytask[:completed_at] %> + <% end %> + <% end %> +

+
\ No newline at end of file From 00a1d464fbe8bee9f4d1fcdd035f3d0f2fdcbe21 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Fri, 30 Sep 2016 10:30:40 -0700 Subject: [PATCH 030/103] changed some records --- db/development.sqlite3 | Bin 20480 -> 20480 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 17582ffc38f90d5191e95a800f3f2dbaafcad3b6..d704fb8a8deab42960efb31c8b9c4342de53695d 100644 GIT binary patch delta 80 zcmZozz}T>Wae_3X(nJ|&Mx~7ji}X1p7+AOuGVp6{<}%>pVPRlk7TPRh!^g~G!^goe kIl)F`vYCyDkgWae_3X;zSu|M#YT@i}X2S7+AOuGVn-j<}%>pVR7Q)VAw2U!^dowr(U8^ zo|spnP?E2ZotIy3WMF8fYhbBsWUgRfUnTlbBKoRkk_9eue-5 DFee=I From 23fcb1e3bc3fd619f5374dc5015005b41e5852d4 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Mon, 3 Oct 2016 09:19:12 -0700 Subject: [PATCH 031/103] fixed update, edit, destroy --- app/controllers/tasks_controller.rb | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 5b5fa0315..2ca33c128 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -15,6 +15,7 @@ def create @title = params[:task][:title] @description = params[:task][:description] @completed_at = params[:task][:completed_at] + @completed = params[:task][:completed] @owner = params[:task][:owner] Task.create(title: @title, description: @description, completed_at: @completed_at, owner: @owner) redirect_to root_path @@ -38,22 +39,25 @@ def show end def update - @mytask = Task.find_by(params[:id]) - - @mytask.title = params[:title] - @mytask.description = params[:description] - @mytask.completed_at = params[:completed_at] - + @mytask = Task.find(params[:id].to_i) + + @mytask.title = params[:task][:title] + @mytask.description = params[:task][:description] + # @mytask.completed_at = params[:task][:completed_at] + @mytask.completed = params[:task][:completed] + if @mytask.completed == true + @mytask.completed_at = params[:task][:updated_at] + end @mytask.save - show + redirect_to root_path end def edit - @mytask = Task.find_by(params[:id]) + @mytask = Task.find(params[:id].to_i) end def destroy - @mytask = Task.find_by(params[:id]) + @mytask = Task.find(params[:id]) @mytask.destroy redirect_to root_path end From f6af9f9345342e2433a28f2bf13c38fa5092e8e2 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Mon, 3 Oct 2016 09:20:10 -0700 Subject: [PATCH 032/103] added form with checkbox and ruby logic --- app/views/tasks/edit.html.erb | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index 16d4dda48..6fe3320ab 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,3 +1,25 @@

Update Task Status

+
+

<%= @mytask.title %>

+

<%= @mytask.description %>

-form \ No newline at end of file +<%= form_for @mytask, url: update_path do |f| %> + <%= f.label :title %> + <%= f.text_field :title %> + + <%= f.label :description %> + <%= f.text_area :description %> + + <%= f.label :completed %> + <%= f.check_box :completed %> + <% if @mytask[:completed] == true %> + <% @mytask[:completed_at] = @mytask[:updated_at] %> + <% else %> + <% @mytask[:completed_at] = nil %> + <% end %> + + + +

<%= f.submit %>

+ <% end %> +
\ No newline at end of file From 11b47109fcd83648cd7c84935af528d7d5409b16 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Mon, 3 Oct 2016 09:21:04 -0700 Subject: [PATCH 033/103] added labels before values 'Title:' etc --- app/views/tasks/index.html.erb | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index a21c9dff8..f284b5e69 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -2,9 +2,19 @@ <% @tasks.each do |task| %>
-

<%= link_to(task[:title], show_path(task[:id])) %>

-

<%= task[:description] %>

-

<%= task[:completed_at] %>

+

Title: <%= link_to(task[:title], show_path(task[:id])) %>

+

Description: <%= task[:description] %>

+

Completion Status: + + <% if task[:completed] == true %> + <% good_day = task[:updated_at].strftime("%A, %m/%d/%Y") %> + + <%= good_day %> + <% else %> + --/--/---- + <% end %> +

+

<%= button_to( "Delete", destroy_path(task[:id]), method: :delete, data: { confirm: "Are you sure?" }) %>

<% end %> From 186b728b2ff08e43b08f0953248a14087c4a14f3 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Mon, 3 Oct 2016 09:21:45 -0700 Subject: [PATCH 034/103] changed labels, added date formatting, added ruby logic to completion status --- app/views/tasks/show.html.erb | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 828ef3043..645a728f6 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,12 +1,16 @@

Title: <%= @mytask[:title] %>

Description: <%= @mytask[:description] %>

-

Completion Status: - <% if @mytask[:completed_at] == nil || @mytask[:completed_at] == "" %> - Not done +

Completed on: + + <% if @mytask[:completed] == true %> + <% good_day = @mytask[:updated_at].strftime("%A, %m/%d/%Y") %> + + <%= good_day %> <% else %> - Done on <%= @mytask[:completed_at] %> + --/--/---- <% end %> -

<%= button_to( "Update", update_path(@mytask[:id]), method: :patch) %>

+

+

<%= button_to( "Edit", edit_path(@mytask[:id]), method: :patch) %>

\ No newline at end of file From 95aadbebee6dd951537b0730783c328664f48bd6 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Mon, 3 Oct 2016 09:32:12 -0700 Subject: [PATCH 035/103] repeats edit view. wrong/? --- app/views/tasks/update.html.erb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/app/views/tasks/update.html.erb b/app/views/tasks/update.html.erb index 0dd988e7a..52a3383d6 100644 --- a/app/views/tasks/update.html.erb +++ b/app/views/tasks/update.html.erb @@ -3,18 +3,19 @@

Title: <%= @mytask[:title] %>

Description: <%= @mytask[:description] %>

-<%= form_for @task do |f| %> - <%= f.check_box :completed_at %> - <% if check_box.checked_value == "1" %> +<%= form_for @mytask, url: tasks_update_path do |f| %> + <%= f.check_box :completed %> + <% if @mytask[:completed] == true %> @mytask[:completed_at] = Datetime.now - <% end %> + <% end %>

Completion Status: - <% if @mytask[:completed_at] == nil || @mytask[:completed_at] == "" %> + <% if @mytask[:completed] == false %> Not done <% else %> - Done on <%= @mytask[:completed_at] %> + Done on <%= @mytask[:updated_at] %> <% end %> - <% end %>

+

<%= f.submit %>

+ <% end %> \ No newline at end of file From 72655003d9149b76174f0689c1e21e8035bbc23d Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Mon, 3 Oct 2016 09:32:59 -0700 Subject: [PATCH 036/103] experimented with root vs root to, added update and edit routes --- config/routes.rb | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/config/routes.rb b/config/routes.rb index f0da75bad..dce1da654 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,6 +1,8 @@ Rails.application.routes.draw do - root to: 'tasks#index' + # root to: 'tasks#index' + + root 'tasks#index' get 'tasks' => 'tasks#index' , as: 'tasks' @@ -12,11 +14,15 @@ get 'tasks/show/:id' => 'tasks#show' , as: 'show' - get 'tasks/update' => 'tasks#update' + get 'tasks/:id/update' => 'tasks#update' + + patch 'tasks/:id/update/' => 'tasks#update' , as: 'update' + + get 'tasks/:id/edit' => 'tasks#edit' , as: 'edit' - patch 'tasks/update' => 'tasks#update' , as: 'update' + patch 'tasks/:id/edit' => 'tasks#edit' - get 'tasks/edit' + get 'tasks' => 'tasks#update' delete 'tasks/destroy' => 'tasks#destroy' , as: 'destroy' From ac17d8984acae4a2e715c0ae188a4ecdebc9abf7 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Mon, 3 Oct 2016 09:34:05 -0700 Subject: [PATCH 037/103] updated schema to include completed field to allow for checkbox functionality --- db/development.sqlite3 | Bin 20480 -> 20480 bytes ...0160930221321_added_completed_check_box.rb | 5 +++++ db/schema.rb | 7 ++++--- 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 db/migrate/20160930221321_added_completed_check_box.rb diff --git a/db/development.sqlite3 b/db/development.sqlite3 index d704fb8a8deab42960efb31c8b9c4342de53695d..d3f28b14dcf3cbb889d848f0c1994898cbf56602 100644 GIT binary patch delta 739 zcmZ{i&2G~`6oto0fVjk-BqbCSP^^HIMl{3xc>G6Eh=44Bb^+x9lE%id+Zd6lMA@{! z3jltBz5>mn8(6UF5;m+_u|lvbj{t5{kciZgW;6HP^PPJ&n_JT6mh`4v&;bCalKb~$ z-p;X-4jMnE6!jv=$bW&wd@5C^m>Ae* zm{P(hi4Q906VcwGXfF|chBu4py7a#&RY=$6@e{RZ(xo#6ZiB2609C+@dKLQWC-_nM zssy78IGvMDk1owGN*n!>46Zf7bgKm)MXRnB3EzFDiOw(-?ojjxPqgD<`q4n^t_cwh z)>fN`pa#JW%rv4qoH)crm|&CBlPliBIT@5Hppc-J68|Gy`;fHYPIO@hTS#ZzWah~g zZ!s@}a{0(F{?NRRj`J7}HXUjpTemRN#eG!JPje_he7=9#_aUinwSnD$RgadsfhjNy~X5%oE?wXZcYEo i)afoyWTFnS5Z7(0^ND3~hv~@TgqfDNed{-rN`C;H*R9C_ delta 585 zcmZXR%T59@6oxwvDhfjx;{}5TbYmni_BNeqLy$>a8N)(W?j+GTCJGC@EY&wqXXnai zaC`w)yok{qiN1gqi8^3Uy6E}7ocwLCAGPa8?KW$!0szL<{#p86kt%xKM(&iSWoFlhCpoBz;h&&o50E{(*{qk&q zaEXy6kj;=iqDP3*(LhHMITjWUXLLl55CF7~ZygJXki~2!gc#PNMCs21-Iat|40Eck zJ(L|sh|(|m`W5Dqaur5paYpnAQM#K`zu|fH*6HDyf80F!mEAm{lG)P6mY~8Ve^2m_ zs0r_2MR;qTS8KEzC;3aG(f0RR=lO$HITZ)}M8QL40b)lICJDAU#g4-Qe{*|!Cmjdb UEHFJU*r;p-Ta~$|>L=99FZ70hI{*Lx diff --git a/db/migrate/20160930221321_added_completed_check_box.rb b/db/migrate/20160930221321_added_completed_check_box.rb new file mode 100644 index 000000000..04698dbb4 --- /dev/null +++ b/db/migrate/20160930221321_added_completed_check_box.rb @@ -0,0 +1,5 @@ +class AddedCompletedCheckBox < ActiveRecord::Migration + def change + add_column :tasks, :completed, :boolean, :default => false + end +end diff --git a/db/schema.rb b/db/schema.rb index 83b4c63ac..12454a0f1 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,15 +11,16 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20160928232143) do +ActiveRecord::Schema.define(version: 20160930221321) do create_table "tasks", force: :cascade do |t| t.string "title" t.text "description" t.datetime "completed_at" t.string "owner" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.boolean "completed", default: false end end From 66fb9cb2147aebcd7d5239a073561787ce2c7182 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 4 Oct 2016 13:11:38 -0700 Subject: [PATCH 038/103] added partials --- app/views/tasks/create.html.erb | 14 +------------- app/views/tasks/edit.html.erb | 25 +------------------------ app/views/tasks/new.html.erb | 12 +----------- 3 files changed, 3 insertions(+), 48 deletions(-) diff --git a/app/views/tasks/create.html.erb b/app/views/tasks/create.html.erb index 75334d671..a72a30086 100644 --- a/app/views/tasks/create.html.erb +++ b/app/views/tasks/create.html.erb @@ -1,15 +1,3 @@

Add a Task

-<%= form_for :task do |f| %> - <% f.label :title %> - <% f.text_field :title %> - - <% f.label :description %> - <% f.text_field :description %> - - <% f.label :owner %> - <% f.text_field :owner %> - <% f.submit %> -<% end %> - - +<%= render partial: "form", locals: {action_name: "create" } %> diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index 6fe3320ab..e240a0caa 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,25 +1,2 @@

Update Task Status

-
-

<%= @mytask.title %>

-

<%= @mytask.description %>

- -<%= form_for @mytask, url: update_path do |f| %> - <%= f.label :title %> - <%= f.text_field :title %> - - <%= f.label :description %> - <%= f.text_area :description %> - - <%= f.label :completed %> - <%= f.check_box :completed %> - <% if @mytask[:completed] == true %> - <% @mytask[:completed_at] = @mytask[:updated_at] %> - <% else %> - <% @mytask[:completed_at] = nil %> - <% end %> - - - -

<%= f.submit %>

- <% end %> -
\ No newline at end of file +<%= render partial: "form", locals: {action_name: "edit" } %> \ No newline at end of file diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 6b8911304..9486db703 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,14 +1,4 @@

Add a Task

-<%= form_for @task do |f| %> - <%= f.label :title %> - <%= f.text_field :title %> - - <%= f.label :description %> - <%= f.text_field :description %> - - <%= f.label :owner %> - <%= f.text_field :owner %> - <%= f.submit %> -<% end %> +<%= render partial: "form", locals: {action_name: "new" } %> \ No newline at end of file From 5cdf8817eec180c6ac208caea53e9c641c474533 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 4 Oct 2016 13:11:55 -0700 Subject: [PATCH 039/103] the partial form completer --- app/views/tasks/_form.html.erb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 app/views/tasks/_form.html.erb diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb new file mode 100644 index 000000000..9b914f9a9 --- /dev/null +++ b/app/views/tasks/_form.html.erb @@ -0,0 +1,23 @@ +

Add a Task

+ +<%= form_for @mytask, url: @path do |f| %> + + <%= f.label :title %> + <%= f.text_field :title %> + + <%= f.label :description %> + <%= f.text_field :description %> + + <%= f.label :owner %> + <%= f.text_field :owner %> + + <%= f.label :completed %> + <%= f.check_box :completed %> + <% if @mytask[:completed] == true %> + <% @mytask[:completed_at] = @mytask[:updated_at] %> + <% else %> + <% @mytask[:completed_at] = nil %> + <% end %> + + <%= f.submit action_name %> +<% end %> From eab84a3e99cb95bbb45ae39b801cff63a68309bf Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 4 Oct 2016 13:12:31 -0700 Subject: [PATCH 040/103] changed edit and new methods to allow for partial --- app/controllers/tasks_controller.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 2ca33c128..3668bfc82 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -7,7 +7,8 @@ def index end def new - @task = Task.new + @mytask = Task.new + @path = 'new_path' end def create @@ -39,6 +40,7 @@ def show end def update + # @path = 'update_path' @mytask = Task.find(params[:id].to_i) @mytask.title = params[:task][:title] @@ -53,7 +55,9 @@ def update end def edit + @path = 'update' @mytask = Task.find(params[:id].to_i) + end def destroy From e89da73f482c4d04631865beb953736b49223461 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 4 Oct 2016 13:12:54 -0700 Subject: [PATCH 041/103] changed update route to allow for partial --- config/routes.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/routes.rb b/config/routes.rb index dce1da654..6c12d8d49 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -18,9 +18,9 @@ patch 'tasks/:id/update/' => 'tasks#update' , as: 'update' - get 'tasks/:id/edit' => 'tasks#edit' , as: 'edit' + get 'tasks/:id/edit' => 'tasks#edit' - patch 'tasks/:id/edit' => 'tasks#edit' + patch 'tasks/:id/edit' => 'tasks#edit', as: 'edit' get 'tasks' => 'tasks#update' From f49608a3bc6ff14d839430d3ba7196be4456e60a Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 4 Oct 2016 13:13:39 -0700 Subject: [PATCH 042/103] style sheets from portfolio --- app/assets/stylesheets/main.css | 320 ++++++++++++++++++++++++++++++++ 1 file changed, 320 insertions(+) create mode 100644 app/assets/stylesheets/main.css diff --git a/app/assets/stylesheets/main.css b/app/assets/stylesheets/main.css new file mode 100644 index 000000000..3b272ec03 --- /dev/null +++ b/app/assets/stylesheets/main.css @@ -0,0 +1,320 @@ +/*FORMATTING ACROSS ALL PAGES*/ + +body { + border: solid black; +} + +body header { + border: solid black; + border-top-width: 0; + border-right-width: 0; + border-left-width: 0; + display: flex; + justify-content: space-between; +} + +body header a { + text-decoration: none; + margin: 1rem; +} + +a { + color: black; +} + +a:hover { + color: green; +} + +a:visited { + color: pink; +} + +a:visited:hover { + color: blue; +} + +body header a h1 { + font-family: Verdana; + font-size: 3rem; + margin-top: 0rem; + color: black; +} + +nav ul { + padding-right: 0.5rem; +} + +nav li { + list-style: none; + margin: 0.5rem; + display: inline-block; + float: right; + vertical-align: baseline; + text-align: center; +} + +header nav li { + border: double; + border-width: 2px; + padding-top: 0.75rem; + padding-bottom: 0.75rem; +} + +footer { + clear: both; + border: solid black; + border-bottom-width: 0; + border-right-width: 0; + border-left-width: 0; + display: flex; + justify-content: space-between; + /*align-items: flex-start;*/ +} + +footer h4 { + font-size: 1rem; + padding: 1rem; + text-align: top; + vertical-align: top; +} + +#disclaimer { + width: 70%; + font-size: 0.75rem; + float: left; + margin: 1.5rem; + /*align-content: center;*/ +} + +footer img { + width: 3.5vw; + /*width: 50px;*/ +} + + +/*END OF FORMATTING ACROSS ALL PAGES*/ + +article h2 { + font-size: 2rem; + color: black; + margin-left: 1rem; + margin-bottom: 0; +} + +main h3 a { + text-decoration: none; + font-size: 1.5rem; + color: black; + margin-left: 1.5rem; + margin-bottom: 0; +} + +article p { + margin-left: 4rem; + margin-top: 0; +} + +.index-text { + background-color: rgba(0, 0, 0, 0.5); + color: white; + cursor: pointer; + display: table; + visibility: hidden; +} + +div.space-after { + width: 90%; + display: flex; + justify-content: flex-start; + align-items: flex-end; + margin: auto; + border: solid black; + border-top-width: 0; + /*border-bottom-width: 0;*/ +} + +#about { + width: 30%; +} + +#about:hover .index-text { + visibility: visible; +} + +#about img { + /*width: 330px;*/ + width: 22vw; + /*margin-top: 9%; + /*border-radius: 75%;*/ +} + +#after-about { + width: 50%; +} + +div.center-space { + width: 90%; + display: flex; + justify-content: center; + align-items: center; + margin: auto; + border: solid black; + border-bottom-width: 0; + border-top-width: 0; +} + +#portfolio:hover .index-text { + visibility: visible; +} + +#portfolio img { + width: 44vw; +} + +div.space-before { + width: 90%; + display: flex; + justify-content: flex-end; + align-items: flex-start; + margin: auto; + border: solid black; + /*border-top-width: 0;*/ + border-bottom-width: 0; +} + +#sundry { + /*display: inline-block;*/ + /*float: right;*/ + /*padding-left: 80%;*/ + /*margin: 10%;*/ + /*width: 30%;*/ +} + +#sundry:hover .index-text { + visibility: visible; +} + +#sundry img { + width: 22vw; + /*width: 330px;*/ +} + + +/*END OF INDEX FORMATTING*/ + + +/*ABOUT FORMATTING*/ + +#about-center-space { + width: 90%; + margin: auto; + display: flex; + border: solid black; + border-bottom-width: 0; + border-top-width: 0; +} + +#about-center-space img { + width: 60vw; +} + +/*PORTFOLIO FORMATTING*/ + +div.portfolio-center-space { + width: 90%; + margin: auto; + border: solid black; + border-bottom-width: 0; + border-top-width: 0; +} + +.portfolio-center-space article { + display: flex; + justify-content: space-between; + /*align-items: center;*/ + /*border: solid black;*/ +} + +section h3 a { + display: flex; +} + +.jumpstart { + display: block; + width: 100%; + border: solid black; + border-top-width: 0; + border-right-width: 0; + border-left-width: 0; +} + +.ruby img { + width: 8vw; + height: auto; + /*width: 300px;*/ + margin: 1rem; + margin-right: 2.5rem; +} + +.post-html-css { + border: solid black; + border-bottom-width: 0; + border-right-width: 0; + border-left-width: 0; +} + +.post-html-css img { + width: 10vw; + height: auto; + /*width: 300px;*/ + margin: 1.5rem 0 1rem 1rem; +} + + +/*END OF PORTFOLIO FORMATTING*/ + + +/*FORMATTING FOR SUNDRY.HTML*/ + +.center-space img { + width: 30vw; + height: auto; +} + +.activities article { + /*display: inline-block;*/ + border-top: solid black; +} + +.activities article section { + display: inline-block; + /*width: 50%;*/ +} + +.img-caption { + vertical-align: top; + width: 30%; + margin-top: 0; + margin-left: 1rem; +} + +section.img-caption h2 { + margin: 0 0.5rem 0.5rem 1rem; +} + +section.img-caption p { + margin: 0 0.5rem 0.5rem 1rem; +} + +.images { + object-fit: contain; + clear: both; + display: flex; + justify-content: flex-start; + align-items: center; +} + +#baking { + border-top-width: 0; +} From 74ba72ba70f6effe6f9b261cb68db446aa8821d2 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 4 Oct 2016 13:14:19 -0700 Subject: [PATCH 043/103] changed index view to work with css. moved add new task button to top --- app/views/tasks/index.html.erb | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index f284b5e69..654947d6a 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,22 +1,26 @@ -

Task List

+

Task List

<%= button_to("Add New Task", new_path, method: :get) %> <% @tasks.each do |task| %> -
-

Title: <%= link_to(task[:title], show_path(task[:id])) %>

-

Description: <%= task[:description] %>

-

Completion Status: + +

+

Title: <%= link_to(task[:title], show_path(task[:id])) %>

+

Description: <%= task[:description] %>

+

Completed: - <% if task[:completed] == true %> - <% good_day = task[:updated_at].strftime("%A, %m/%d/%Y") %> + <% if task[:completed] == true %> + <% good_day = task[:updated_at].strftime("%A, %m/%d/%Y") %> - <%= good_day %> - <% else %> - --/--/---- - <% end %> -

+ <%= good_day %> + <% else %> + --/--/---- + <% end %> +

-

<%= button_to( "Delete", destroy_path(task[:id]), method: :delete, data: { confirm: "Are you sure?" }) %>

-
+

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

+
+ <% end %> <%= button_to("Add Task", new_path, method: :get) %> \ No newline at end of file From a6b320c8077610557425ca795ef7c4a8e280b7d3 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 4 Oct 2016 13:14:57 -0700 Subject: [PATCH 044/103] stylesheet to help reset-normalize webpages --- app/assets/stylesheets/normalize.css | 460 +++++++++++++++++++++++++++ 1 file changed, 460 insertions(+) create mode 100644 app/assets/stylesheets/normalize.css diff --git a/app/assets/stylesheets/normalize.css b/app/assets/stylesheets/normalize.css new file mode 100644 index 000000000..ad707cffe --- /dev/null +++ b/app/assets/stylesheets/normalize.css @@ -0,0 +1,460 @@ +/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */ + +/** + * 1. Change the default font family in all browsers (opinionated). + * 2. Correct the line height in all browsers. + * 3. Prevent adjustments of font size after orientation changes in IE and iOS. + */ + +/* Document + ========================================================================== */ + +html { + font-family: sans-serif; /* 1 */ + line-height: 1.15; /* 2 */ + -ms-text-size-adjust: 100%; /* 3 */ + -webkit-text-size-adjust: 100%; /* 3 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers (opinionated). + */ + +body { + margin: 0; +} + +/** + * Add the correct display in IE 9-. + */ + +article, +aside, +footer, +header, +nav, +section { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + * 1. Add the correct display in IE. + */ + +figcaption, +figure, +main { /* 1 */ + display: block; +} + +/** + * Add the correct margin in IE 8. + */ + +figure { + margin: 1em 40px; +} + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * 1. Remove the gray background on active links in IE 10. + * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. + */ + +a { + background-color: transparent; /* 1 */ + -webkit-text-decoration-skip: objects; /* 2 */ +} + +/** + * Remove the outline on focused links when they are also active or hovered + * in all browsers (opinionated). + */ + +a:active, +a:hover { + outline-width: 0; +} + +/** + * 1. Remove the bottom border in Firefox 39-. + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Prevent the duplicate application of `bolder` by the next rule in Safari 6. + */ + +b, +strong { + font-weight: inherit; +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font style in Android 4.3-. + */ + +dfn { + font-style: italic; +} + +/** + * Add the correct background and color in IE 9-. + */ + +mark { + background-color: #ff0; + color: #000; +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + */ + +audio, +video { + display: inline-block; +} + +/** + * Add the correct display in iOS 4-7. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Remove the border on images inside links in IE 10-. + */ + +img { + border-style: none; +} + +/** + * Hide the overflow in IE. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers (opinionated). + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: sans-serif; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` + * controls in Android 4. + * 2. Correct the inability to style clickable types in iOS and Safari. + */ + +button, +html [type="button"], /* 1 */ +[type="reset"], +[type="submit"] { + -webkit-appearance: button; /* 2 */ +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Change the border, margin, and padding in all browsers (opinionated). + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * 1. Add the correct display in IE 9-. + * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Remove the default vertical scrollbar in IE. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10-. + * 2. Remove the padding in IE 10-. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding and cancel buttons in Chrome and Safari on OS X. + */ + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in IE 9-. + * 1. Add the correct display in Edge, IE, and Firefox. + */ + +details, /* 1 */ +menu { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Scripting + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + */ + +canvas { + display: inline-block; +} + +/** + * Add the correct display in IE. + */ + +template { + display: none; +} + +/* Hidden + ========================================================================== */ + +/** + * Add the correct display in IE 10-. + */ + +[hidden] { + display: none; +} \ No newline at end of file From ba1190c87efb7325141b7b493e9ed31433eae0c0 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 4 Oct 2016 13:15:21 -0700 Subject: [PATCH 045/103] tweaked database, added some and deleted some in practice --- db/development.sqlite3 | Bin 20480 -> 20480 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/db/development.sqlite3 b/db/development.sqlite3 index d3f28b14dcf3cbb889d848f0c1994898cbf56602..af6e02c7336acef61641623da0d17acfa9eef88a 100644 GIT binary patch delta 276 zcmZozz}T>Wae_3X)kGO*Myrhp3-u-WN*FkK_Av15;b-Af;m_bZ$iJ8ODsL7q&t@ru zMLg1ee4Gr@@(c`)j{F&^IRy&2skw>SsR|_-nZ=WP?BweW4Rj4m6bvn`Oiir}P4vty z3{1_;(_+Mcx|A7Ifx3cHQxt+qbAyu;iz*cgOY=)ogG*8iGE(ytyfgFCjSLLUbm3;0 z7=p|&Ftju?HODQJmMO}~pl#0}3^aXmsjZ(7*nSgpD+2>P6Eg!-Lz9xpS8eCB@NZ)9 fom^pOECx5<)Y!@dsK(sH+|n>@^Fcd1K}InE!JI{{ delta 247 zcmZozz}T>Wae_3X$wV1vMw5*R3-u-WH!*PVW-;)U@U!r#@MrKHu{zXW2$hUTG`Hm^S&U?R*w* oK2CR+79cN`|u4ig)Zfa^#viYE$ogkwq0N>y^#sB~S From cb4ba6158bc187bac16c0737401bfac8b0e0200a Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Fri, 7 Oct 2016 10:08:30 -0700 Subject: [PATCH 046/103] Updated Gemfile for Heroku --- Gemfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index e5fc837eb..c40abf783 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,7 @@ source 'https://rubygems.org' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.2.7' # Use sqlite3 as the database for Active Record -gem 'sqlite3' +# gem 'sqlite3' # Use SCSS for stylesheets gem 'sass-rails', '~> 5.0' # Use Uglifier as compressor for JavaScript assets @@ -32,9 +32,15 @@ gem 'sdoc', '~> 0.4.0', group: :doc # Use Capistrano for deployment # gem 'capistrano-rails', group: :development +#required for Heroku +gem 'pg', group: :production +gem 'rails_12factor', group: :production + group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' + #required for Heroku + gem 'sqlite3' end group :development do From 463fd86cce808c7547b94b3a5879ffbc1756c5d0 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 18 Oct 2016 10:11:47 -0700 Subject: [PATCH 047/103] added gems per CM direction --- Gemfile | 14 ++++++++++++-- Gemfile.lock | 50 +++++++++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 59 insertions(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index c40abf783..57b9894b6 100644 --- a/Gemfile +++ b/Gemfile @@ -40,7 +40,9 @@ group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' #required for Heroku - gem 'sqlite3' + # gem 'sqlite3' + gem 'dotenv-rails' + gem "better_errors" end group :development do @@ -49,7 +51,15 @@ group :development do # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' - gem "better_errors" + gem "binding_of_caller" end +gem 'omniauth' +gem 'omniauth-github' +gem 'awesome_print' + +group :test do + gem 'minitest-reporters' +end + diff --git a/Gemfile.lock b/Gemfile.lock index 4d6c84fe6..e986ee451 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -36,7 +36,9 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) + ansi (1.5.0) arel (6.0.3) + awesome_print (1.7.0) better_errors (2.1.1) coderay (>= 1.0.0) erubis (>= 2.6.6) @@ -55,10 +57,17 @@ GEM coffee-script-source (1.10.0) concurrent-ruby (1.0.2) debug_inspector (0.0.2) + dotenv (2.1.1) + dotenv-rails (2.1.1) + dotenv (= 2.1.1) + railties (>= 4.0, < 5.1) erubis (2.7.0) execjs (2.7.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) globalid (0.3.7) activesupport (>= 4.1.0) + hashie (3.4.6) i18n (0.7.0) jbuilder (2.6.0) activesupport (>= 3.0.0, < 5.1) @@ -68,6 +77,7 @@ GEM railties (>= 4.2.0) thor (>= 0.14, < 2.0) json (1.8.3) + jwt (1.5.6) loofah (2.0.3) nokogiri (>= 1.5.9) mail (2.6.4) @@ -77,10 +87,33 @@ GEM mime-types-data (3.2016.0521) mini_portile2 (2.1.0) minitest (5.9.1) + minitest-reporters (1.1.11) + ansi + builder + minitest (>= 5.0) + ruby-progressbar multi_json (1.12.1) + multi_xml (0.5.5) + multipart-post (2.0.0) nokogiri (1.6.8) mini_portile2 (~> 2.1.0) pkg-config (~> 1.1.7) + oauth2 (1.2.0) + faraday (>= 0.8, < 0.10) + jwt (~> 1.0) + multi_json (~> 1.3) + multi_xml (~> 0.5) + rack (>= 1.2, < 3) + omniauth (1.3.1) + hashie (>= 1.2, < 4) + rack (>= 1.0, < 3) + omniauth-github (1.1.2) + omniauth (~> 1.0) + omniauth-oauth2 (~> 1.1) + omniauth-oauth2 (1.4.0) + oauth2 (~> 1.0) + omniauth (~> 1.2) + pg (0.19.0) pkg-config (1.1.7) rack (1.6.4) rack-test (0.6.3) @@ -104,6 +137,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.7) actionpack (= 4.2.7) activesupport (= 4.2.7) @@ -112,6 +150,7 @@ GEM rake (11.3.0) rdoc (4.2.2) json (~> 1.4) + ruby-progressbar (1.8.1) sass (3.4.22) sass-rails (5.0.6) railties (>= 4.0.0, < 6) @@ -130,7 +169,6 @@ GEM 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.5) @@ -151,20 +189,26 @@ PLATFORMS ruby DEPENDENCIES + awesome_print better_errors binding_of_caller byebug coffee-rails (~> 4.1.0) + dotenv-rails jbuilder (~> 2.0) jquery-rails + minitest-reporters + omniauth + omniauth-github + pg rails (= 4.2.7) + rails_12factor sass-rails (~> 5.0) sdoc (~> 0.4.0) spring - sqlite3 turbolinks uglifier (>= 1.3.0) web-console (~> 2.0) BUNDLED WITH - 1.13.1 + 1.13.5 From a464f65a1349a1cf9bd9c843e86e45b902e912ac Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 18 Oct 2016 10:16:26 -0700 Subject: [PATCH 048/103] omniauth user authentication test setup --- .gitignore | 58 + app/models/user.rb | 2 + config/initializers/omniauth.rb | 4 + db/development.sqlite3 | Bin 20480 -> 24576 bytes db/migrate/20161018170340_create_users.rb | 12 + db/schema.rb | 11 +- log/development.log | 14293 ++++++++++++++++++++ main.css | 320 + test/fixtures/users.yml | 13 + test/models/user_test.rb | 7 + 10 files changed, 14719 insertions(+), 1 deletion(-) create mode 100644 app/models/user.rb create mode 100644 config/initializers/omniauth.rb create mode 100644 db/migrate/20161018170340_create_users.rb create mode 100644 main.css create mode 100644 test/fixtures/users.yml create mode 100644 test/models/user_test.rb diff --git a/.gitignore b/.gitignore index a0353207c..82cb34576 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,61 @@ build/ #hide logs /log/development.log + + + +# Ignore the default SQLite database. +/db/*.sqlite3 +/db/*.sqlite3-journal + +# Ignore all logfiles and tempfiles. +/log/* +!/log/.keep + +# Ignore this annoying MACOS file which is a caching file and keeps thumbnails +.DS_store + +# See https://help.github.com/articles/ignoring-files for more about ignoring files. +#*.rbc +capybara-*.html +.rspec + +/public/system +/coverage/ +/spec/tmp +**.orig +rerun.txt +pickle-email-*.html + +# TODO Comment out this rule if you are OK with secrets being uploaded to the repo +config/initializers/secret_token.rb + +# Only include if you have production secrets in this file, which is no longer a Rails default +# config/secrets.yml + +# dotenv +# TODO Comment out this rule if environment variables can be committed + +# Hide the .env because of secrets +/.env + +## Environment normalization: +/.bundle +/vendor/bundle + +# these should all be checked in to normalize the environment: +# Gemfile.lock, .ruby-version, .ruby-gemset + +# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: +.rvmrc + +# if using bower-rails ignore default bower_components path bower.json files +/vendor/assets/bower_components +*.bowerrc +bower.json + +# Ignore pow environment settings +.powenv + +# Ignore Byebug command history file. +.byebug_history \ No newline at end of file diff --git a/app/models/user.rb b/app/models/user.rb new file mode 100644 index 000000000..4a57cf079 --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,2 @@ +class User < ActiveRecord::Base +end diff --git a/config/initializers/omniauth.rb b/config/initializers/omniauth.rb new file mode 100644 index 000000000..36073da13 --- /dev/null +++ b/config/initializers/omniauth.rb @@ -0,0 +1,4 @@ +Rails.application.config.middleware.use OmniAuth::Builder do + # binding.pry + provider :github, ENV["GITHUB_CLIENT_ID"], ENV["GITHUB_CLIENT_SECRET"], scope: "user:email" +end \ No newline at end of file diff --git a/db/development.sqlite3 b/db/development.sqlite3 index af6e02c7336acef61641623da0d17acfa9eef88a..442f1161a633e16d64f9d8f63fe27be8573a2a2a 100644 GIT binary patch delta 277 zcmZozz}Rqrae}mqH%6acc(MXI#8|k_@ao+Zp&L@pJHO=RMA+vRP2T zk!SOEo>WE?ZgFvO#%A-9#za7)-D^2e~?ixGID=I{COND1pQ# zyYiV?lxC(VDU>A^C1)fS=_n}WCFZ6g^9zdd%Q90^i;%@qa}zUjHt*weW8`AyKgGcR zj{gq-DWF^S@CykrGie$b7@8Rx7+M&b8yK4yOui$p0aSJZr0h2T381oF{K7)anvAH* Ym^a_nS5;u+1$kRwv!KHh{)rRB08i3MWB>pF delta 114 zcmZoTz}T>Wae}m<6$1kUD-go~%S0VxQ7Z=BXI#8|k_;?7+Zp&L@pJHO=RLkzP{5gI z^LCz8M)vpO;^K_W=93TdJekbS|CfV_{|*EHJN`SH1syK%Prf6s0Tj6n61fc&InTfO Iw!W$Y0K$788~^|S diff --git a/db/migrate/20161018170340_create_users.rb b/db/migrate/20161018170340_create_users.rb new file mode 100644 index 000000000..f85251a60 --- /dev/null +++ b/db/migrate/20161018170340_create_users.rb @@ -0,0 +1,12 @@ +class CreateUsers < ActiveRecord::Migration + def change + create_table :users do |t| + t.string :uid + t.string :name + t.string :provider + t.string :email + + t.timestamps null: false + end + end +end diff --git a/db/schema.rb b/db/schema.rb index 12454a0f1..6e0d068fb 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20160930221321) do +ActiveRecord::Schema.define(version: 20161018170340) do create_table "tasks", force: :cascade do |t| t.string "title" @@ -23,4 +23,13 @@ t.boolean "completed", default: false end + create_table "users", force: :cascade do |t| + t.string "uid" + t.string "name" + t.string "provider" + t.string "email" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + end diff --git a/log/development.log b/log/development.log index 9f9b88ef9..dc06da151 100644 --- a/log/development.log +++ b/log/development.log @@ -2923,3 +2923,14296 @@ Processing by TasksController#index as HTML Task Load (0.1ms) SELECT "tasks".* FROM "tasks" Rendered tasks/index.html.erb within layouts/application (4.5ms) Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:53:29 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 196ms (Views: 189.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-29 16:53:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.13" for ::1 at 2016-09-29 16:53:34 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"NFwTyU810c/rTTQihDPE5aYpB5m3udkQf2pKMHhEgAvR5M2ugvVlI4+4q9v7DDfcN2PM96cYkeJkZAmoVfzT4w=="} + Rendered tasks/destroy.html.erb within layouts/application (0.4ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:53:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.15" for ::1 at 2016-09-29 16:53:47 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"NlDe00a9j/q7WlieCW4dGYr1VnqN7cJjxVKS6T8PxE/T6AC0i307Ft+vx2d2Ue4gG7+dFJ1MipHeXNFxEreXpw=="} + Rendered tasks/destroy.html.erb within layouts/application (0.0ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:53:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (16.6ms) +Completed 200 OK in 27ms (Views: 26.9ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.1" for ::1 at 2016-09-29 16:53:56 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"xDDOhWnCPMQbCgW0tH2d5acLXvW862G+NFUNBfMqEa4hiBDipAKIKH//mk3LQm7cNkGVm6xKKUwvW06d3pJCRg=="} + Rendered tasks/destroy.html.erb within layouts/application (0.0ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:54:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:55:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.5ms) + + +Started DELETE "/tasks/destroy.1" for ::1 at 2016-09-29 16:55:13 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"KnJAnnJtoj4TklR3NAM7fsCvNOHq0D+7P7tiXCsZz+7Pyp75v60W0ndny45LPMhHUeX/j/pxd0kktSHEBqGcBg=="} +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + +NameError (undefined local variable or method `task' for #): + app/controllers/tasks_controller.rb:46:in `destroy' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (78.9ms) + + +Started GET "/" for ::1 at 2016-09-29 16:55:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.5ms) + + +Started DELETE "/tasks/destroy.1" for ::1 at 2016-09-29 16:55:35 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"C7CSNmZYJhe4bhUQ6pMvaS+DLh19RvccDVFs09IacwHuCExRq5iS+9ybiumVrNxQvsnlc23nv+4WXy9L/6Ig6Q=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] +  (2.2ms) commit transaction +Completed 500 Internal Server Error in 12ms (ActiveRecord: 2.6ms) + +NoMethodError (undefined method `to' for # +Did you mean? to_s + to_a + t): + app/controllers/tasks_controller.rb:48:in `destroy' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (28.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (61.8ms) + + +Started GET "/" for ::1 at 2016-09-29 16:55:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.4ms) + + +Started DELETE "/tasks/destroy.4" for ::1 at 2016-09-29 16:55:56 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"/6ovPFmFLmY1jK4HO8XEubxiOH18i4dztS/S/IniZoUaEvFblEWailF5Mf5E+jeALSjzE2wqz4GuIZFkpFo1bQ=="} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-09-29 16:55:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.13" for ::1 at 2016-09-29 16:56:25 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"8mrjAYx8wEZgVJyzTCbuXfTwN6L3srMtAPg/xAgP6IcX0j1mQbx0qgShA0ozGR1kZbr8zOcT+98b9nxcJbe7bw=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 3]] +  (3.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.8ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.10" for ::1 at 2016-09-29 16:56:28 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"lr82tU93K+W7MMinVc3HpXmqS8FhFjnGyu9zEBR5gyJzB+jSgrefCd/FV14q8jSc6OCAr3G3cTTR4TCIOcHQyg=="} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 4]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.10" for ::1 at 2016-09-29 16:56:31 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"hUJoIbob8RdDDeAWytfTxdw8oZmCfvCFKO1xw4AHSRZg+rZGd9tF+yf4f++16CD8TXZq95LfuHcz4zJbrb8a/g=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 5]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.4ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.10" for ::1 at 2016-09-29 16:56:33 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"J6XM6tcMl69QNhoDEgv46ziU5YACVx6rf+MswgOyuDHCHRKNGswjQzTDhfptNAvSqd4u7hL2Vllk7W9aLgrr2Q=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 6]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.10" for ::1 at 2016-09-29 16:56:35 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"lAF58fTtNb58GIKgPw2dhbonRZVjdvsz7UfoETh52AFxuaeWOS2BUhjtHVlAMm68K22O+3PXs8H2SauJFcGL6Q=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 7]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.10" for ::1 at 2016-09-29 16:56:38 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"yP9z7wrmuywFs6zK4LK6jT3FSxqzxqhUE9fQu1nSoGQtR62IxyYPwGFGMzOfjUm0rI+AdKNn4KYI2ZMjdGrzjA=="} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 8]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.10" for ::1 at 2016-09-29 16:56:40 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"WkRXxBITII3lYGegHeKG5iVQXj7+sk4pGcFixa4w88y//Imj39OUYYGV+Fli3XXftBqVUO4TBtsCzyFdg4igJA=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 9]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.3ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.10" for ::1 at 2016-09-29 16:56:44 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"pg/MCJm80MjD4ABs5RtwCJiqvlp1ttN2VVYyqLfr6gVDtxJvVHxkJKcVn5WaJIMxCeB1NGUXm4ROWHEwmlO57Q=="} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 10]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.6ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.11" for ::1 at 2016-09-29 16:56:46 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"e2QkDqOQcuLcpS4dukXPA/3T9bWhrsEwt68HqLyA7U6e3PppblDGDrhQseTFejw6bJk+27EPicKsoUQwkTi+pg=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 11]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.3ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/destroy.12" for ::1 at 2016-09-29 16:56:48 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"U82/T+5x3ZCDeJxYdjnxRZWMeZYSkqo7JD34hi1jmKu2dWEoI7FpfOeNA6EJBgJ8BMay+AIz4sk/M7seANvLQw=="} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 12]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/destroy.13" for ::1 at 2016-09-29 16:56:50 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"FrnzgC9SkunspIY7a/dxNBBo5DtEoeknaf9oy/fnFuPzAS3n4pImBYhRGcIUyIINgSIvVVQAodVy8StT2l9FCw=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 13]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 2.4ms) + + +Started GET "/" for ::1 at 2016-09-29 16:56:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:56:53 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (7.8ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-29 16:57:02 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZNRIBi1sQcZ9oqfVgswlWhrVNDFHo13hbHVLaJmY//GBbJZh4Kz1KhlXOCz989Zji5//X1cCFRN3ewjwtCCsGQ==", "task"=>{"title"=>"Finally", "description"=>"Working", "owner"=>"sk"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "owner", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Finally"], ["description", "Working"], ["owner", "sk"], ["created_at", "2016-09-29 23:57:02.506397"], ["updated_at", "2016-09-29 23:57:02.506397"]] +  (0.5ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 12.3ms | ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-09-29 16:57:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:57:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:57:21 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:57:21 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:57:21 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:57:21 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:57:21 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:57:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:57:21 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:57:22 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.3ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-29 16:57:31 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"vkzVloK5rCd2Ze8jXhei/MzBk85pIZRcjJa73BbyoqRb9AvxT3kYyxKQcNohKFHFXYtYoHmA3K6XmPhEO0rxTA==", "task"=>{"title"=>"Really", "description"=>"Yay?", "owner"=>"sk"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "owner", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Really"], ["description", "Yay?"], ["owner", "sk"], ["created_at", "2016-09-29 23:57:31.169893"], ["updated_at", "2016-09-29 23:57:31.169893"]] +  (0.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-09-29 16:57:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:02:53 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 330ms (Views: 321.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 10:02:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:02:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:02:54 -0700 + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 10:03:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" WHERE "id"."id" = 14 LIMIT 1 + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 10:13:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:13:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 10:13:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 25ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:14:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:14:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:14:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:14:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:14:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:14:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:14:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:14:41 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-09-30 10:14:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (22.3ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `task' for #<#:0x007ff57b022c40> +Did you mean? tasks_url + @tasks: + app/views/tasks/show.html.erb:10:in `_app_views_tasks_show_html_erb___2231713375296945043_70346153725040' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d7306e60e7c18266/variables" for ::1 at 2016-09-30 10:14:43 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-09-30 10:14:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (15.6ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `update_path' for #<#:0x007ff5743f2188>: + app/views/tasks/show.html.erb:10:in `_app_views_tasks_show_html_erb___2231713375296945043_70346097002200' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/48ce567c91b28e6d/variables" for ::1 at 2016-09-30 10:14:58 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:15:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/17" for ::1 at 2016-09-30 10:15:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/update.17" for ::1 at 2016-09-30 10:15:34 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"xoMsAD9/eNgWDYLlnd/rDv7Ok9pnxxS+R1XO0uyq5gYe2tQ66K6l/qUA3o/T34sLuVZZvlB7cZ5bfN6SAix6UA=="} + Rendered tasks/update.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/update.html.erb:22: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/tasks/update.html.erb:20:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/e785fe0b7cb387bf/variables" for ::1 at 2016-09-30 10:15:34 -0700 + + +Started PATCH "/tasks/update.17" for ::1 at 2016-09-30 10:16:21 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"xoMsAD9/eNgWDYLlnd/rDv7Ok9pnxxS+R1XO0uyq5gYe2tQ66K6l/qUA3o/T34sLuVZZvlB7cZ5bfN6SAix6UA=="} + Rendered tasks/update.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/update.html.erb:22: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/tasks/update.html.erb:20:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b0c901ddec581de2/variables" for ::1 at 2016-09-30 10:16:21 -0700 + + +Started PATCH "/tasks/update.17" for ::1 at 2016-09-30 10:16:24 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"7pu3GKh12I9zrywzOt4vdJCUPlDZpFg1bQEwp27Dra82wk8if6QFqcCicFl03k9x1wz0NO4YPRVxKCDngEUx+Q=="} + Rendered tasks/update.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/update.html.erb:22: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/tasks/update.html.erb:20:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f9555e727c9984cb/variables" for ::1 at 2016-09-30 10:16:24 -0700 + + +Started GET "/tasks/show/17" for ::1 at 2016-09-30 10:17:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.2ms) + +SyntaxError - syntax error, unexpected '<', expecting ')' + <% end );@output_buffer.safe_append=' + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:13: syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:15: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/tasks/show.html.erb:9:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/226e967f3a8f4b5e/variables" for ::1 at 2016-09-30 10:17:02 -0700 + + +Started GET "/posts/new" for ::1 at 2016-09-30 10:17:08 -0700 + +ActionController::RoutingError (No route matches [GET] "/posts/new"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (19.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/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/SK/.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/SK/.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/SK/.rvm/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/SK/.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-09-30 10:17:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 10:17:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected '<', expecting ')' + <% end );@output_buffer.safe_append=' + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:13: syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:15: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/tasks/show.html.erb:9:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a5631235736b480a/variables" for ::1 at 2016-09-30 10:17:13 -0700 + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 10:17:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:17:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:17:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:17:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:17:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:17:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:17:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:17:27 -0700 + + +Started PATCH "/tasks/update.15" for ::1 at 2016-09-30 10:17:29 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"ly/udYo+trjxE7/KTKMpHOYVhU8m/Pxf//uEmOxrqNZPdhZPXe9rnkIe46ACo0kZoY1PKxFAmX/j0pTYAu00gA=="} + Rendered tasks/update.html.erb within layouts/application (9.2ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/update.html.erb:3:in `_app_views_tasks_update_html_erb___3689107170446892092_70346145388660' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/436660fff91cd71f/variables" for ::1 at 2016-09-30 10:17:29 -0700 + + +Started PATCH "/tasks/update.15" for ::1 at 2016-09-30 10:17:58 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"ly/udYo+trjxE7/KTKMpHOYVhU8m/Pxf//uEmOxrqNZPdhZPXe9rnkIe46ACo0kZoY1PKxFAmX/j0pTYAu00gA=="} + Rendered tasks/update.html.erb within layouts/application (8.7ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `title' for nil:NilClass: + app/views/tasks/update.html.erb:3:in `_app_views_tasks_update_html_erb___3689107170446892092_70346147543300' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/342042000b9c9b91/variables" for ::1 at 2016-09-30 10:17:59 -0700 + + +Started PATCH "/tasks/update.15" for ::1 at 2016-09-30 10:18:12 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"ly/udYo+trjxE7/KTKMpHOYVhU8m/Pxf//uEmOxrqNZPdhZPXe9rnkIe46ACo0kZoY1PKxFAmX/j0pTYAu00gA=="} + Rendered tasks/update.html.erb within layouts/application (22.1ms) +Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.0ms) + +NameError - undefined local variable or method `task' for #<#:0x007ff5737cb788>: + app/views/tasks/update.html.erb:3:in `_app_views_tasks_update_html_erb___3689107170446892092_70346090630680' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7f8dd64d284623b5/variables" for ::1 at 2016-09-30 10:18:12 -0700 + + +Started PATCH "/tasks/update.15" for ::1 at 2016-09-30 10:20:14 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"ly/udYo+trjxE7/KTKMpHOYVhU8m/Pxf//uEmOxrqNZPdhZPXe9rnkIe46ACo0kZoY1PKxFAmX/j0pTYAu00gA=="} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +NameError - uninitialized constant TasksController::Post: + activesupport (4.2.7) lib/active_support/dependencies.rb:533:in `load_missing_constant' + activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing' + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/4044b88c9422fe58/variables" for ::1 at 2016-09-30 10:20:14 -0700 + + +Started PATCH "/tasks/update.15" for ::1 at 2016-09-30 10:20:25 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"ly/udYo+trjxE7/KTKMpHOYVhU8m/Pxf//uEmOxrqNZPdhZPXe9rnkIe46ACo0kZoY1PKxFAmX/j0pTYAu00gA=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 7ms (ActiveRecord: 0.4ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=0: + activerecord (4.2.7) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5fcd4a1e12443692/variables" for ::1 at 2016-09-30 10:20:25 -0700 + + +Started PATCH "/tasks/update.15" for ::1 at 2016-09-30 10:20:44 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"ly/udYo+trjxE7/KTKMpHOYVhU8m/Pxf//uEmOxrqNZPdhZPXe9rnkIe46ACo0kZoY1PKxFAmX/j0pTYAu00gA=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", nil]] +Completed 404 Not Found in 3ms (ActiveRecord: 0.4ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=: + activerecord (4.2.7) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/267f8dca2027b36e/variables" for ::1 at 2016-09-30 10:20:44 -0700 + + +Started PATCH "/tasks/update.15" for ::1 at 2016-09-30 10:21:57 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"ly/udYo+trjxE7/KTKMpHOYVhU8m/Pxf//uEmOxrqNZPdhZPXe9rnkIe46ACo0kZoY1PKxFAmX/j0pTYAu00gA=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", nil]] +Completed 404 Not Found in 3ms (ActiveRecord: 0.4ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=: + activerecord (4.2.7) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9e7aa217b4eab114/variables" for ::1 at 2016-09-30 10:21:57 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:22:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 10:22:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/update.14" for ::1 at 2016-09-30 10:22:06 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"2M8fQncBlWnv9rYB5tS/QRE/jhaq7qckurP3rHMw1P8Alud4oNBIT1z76muo1N9EVqdEcp1SwgSmmufsnbZIqQ=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", nil]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=: + activerecord (4.2.7) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/de56edd3bee581ef/variables" for ::1 at 2016-09-30 10:22:06 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:22:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-09-30 10:22:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/update.16" for ::1 at 2016-09-30 10:22:24 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"9URFn1m+o6rG4M4b+th4kDcNN1YdEm6bFLHK6nxTzKotHb2ljm9+jHXtknG02BiVcJX9MiquC7sImNqqktVQ/A=="} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/baf0d276c7eeb352/variables" for ::1 at 2016-09-30 10:22:24 -0700 + + +Started POST "/__better_errors/baf0d276c7eeb352/eval" for ::1 at 2016-09-30 10:22:36 -0700 + + +Started PATCH "/tasks/update.16" for ::1 at 2016-09-30 10:22:53 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"9URFn1m+o6rG4M4b+th4kDcNN1YdEm6bFLHK6nxTzKotHb2ljm9+jHXtknG02BiVcJX9MiquC7sImNqqktVQ/A=="} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/04ded74784f11bb4/variables" for ::1 at 2016-09-30 10:22:53 -0700 + + +Started GET "/tasks/update.16" for ::1 at 2016-09-30 10:23:14 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/update.16"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (49.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (32.5ms) + Rendered /Users/SK/.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/SK/.rvm/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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (70.6ms) + + +Started GET "/tasks/update.16" for ::1 at 2016-09-30 10:23:36 -0700 +Processing by TasksController#update as +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/aeb9c67a1118a20a/variables" for ::1 at 2016-09-30 10:23:36 -0700 + + +Started GET "/tasks/update.16" for ::1 at 2016-09-30 10:23:54 -0700 +Processing by TasksController#update as + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/controllers/tasks_controller.rb:43:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/9e68b4f7c459df55/variables" for ::1 at 2016-09-30 10:23:54 -0700 + + +Started POST "/__better_errors/9e68b4f7c459df55/eval" for ::1 at 2016-09-30 10:24:03 -0700 + + +Started GET "/tasks/update.16" for ::1 at 2016-09-30 10:24:21 -0700 +Processing by TasksController#update as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", nil], ["updated_at", "2016-09-30 17:24:21.631774"], ["id", 14]] +  (1.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered public/404.html (0.5ms) +Completed 404 Not Found in 38ms (Views: 23.7ms | ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2016-09-30 10:24:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 10:24:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/update.14" for ::1 at 2016-09-30 10:24:27 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"1zqaZS6xQPxZw4o3Fx1sKpsu+qXQ4oijFEGsJzev1s4PY2Jf+WCd2urO1l1ZHQwv3LYwwede7YMIaLxn2SlKmA=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered public/404.html (0.0ms) +Completed 404 Not Found in 20ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:24:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:47:58 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 226ms (Views: 218.0ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 10:48:05 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/railties-4.2.7/lib/rails/templates/rails/welcome/index.html.erb (0.7ms) +Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-30 10:48:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-30 10:48:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-30 10:48:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:48:29 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:48:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:48:29 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:48:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:48:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:48:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:48:29 -0700 + + +Started GET "/" for ::1 at 2016-09-30 14:58:08 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.0ms) +Completed 200 OK in 259ms (Views: 249.8ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-30 14:58:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 14:58:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/update.14" for ::1 at 2016-09-30 14:58:12 -0700 +Processing by TasksController#update as + Parameters: {"authenticity_token"=>"K3+qtFWcFvjxmuy3cNTHCqH+9WOJE6+zTv4fdCADcnyP8SDzHNZeCpF55iBtOcyPNULGRgIps1UrViIYNENq/g=="} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered public/404.html (0.4ms) +Completed 404 Not Found in 29ms (Views: 24.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:00:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 17.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:00:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:00:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:00:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:00:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:00:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:00:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:00:53 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:00:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"giokEwx8OWzaTA4kmuYIGbF29Bg5P5L9moQQCqDAuqAmpK5URTZxnrqvBLOHCwOcJcrHPbIFjhv/LC1mtICiIg==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (7.9ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.5ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344124608140' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/afdf358cf93fb141/variables" for ::1 at 2016-09-30 15:00:54 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:02:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"giokEwx8OWzaTA4kmuYIGbF29Bg5P5L9moQQCqDAuqAmpK5URTZxnrqvBLOHCwOcJcrHPbIFjhv/LC1mtICiIg==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (14.2ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `task_path' for #<#:0x007ff482f991f0> +Did you mean? tasks_path: + actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' + actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:434:in `form_for' + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344071494880' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2f527fa8107ef74c/variables" for ::1 at 2016-09-30 15:02:04 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:03:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:03:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:03:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:03:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:03:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:03:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:03:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:03:41 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:03:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"xbeyakskPia7EefsPI3Fy9y+xCHxmz5o0tNR5AlzeHFhOTgtAm521Nvy7XshYM5OSAL3BHqhIo63e2yIHTNg8w==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (28.8ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `task_update_path' for #<#:0x007ff484153eb8> +Did you mean? tasks_update_path: + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344082133940' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/153183a2519204a3/variables" for ::1 at 2016-09-30 15:03:42 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:03:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:03:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:03:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:03:59 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:03:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:03:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:03:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:03:59 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:03:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"4uAE7Craf5kEkUHIsl+q5Sjr0JOjoBOYctWHxai/ijJGbo6rY5A3a2RyS1+vsqFgvFfjtiiaD34XfbqpvP+SsA==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (2.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.3ms) + +TypeError - no implicit conversion of Symbol into Integer: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:424:in `form_for' + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344072341180' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b0d0fb3f8a16094c/variables" for ::1 at 2016-09-30 15:03:59 -0700 + + +Started POST "/__better_errors/b0d0fb3f8a16094c/eval" for ::1 at 2016-09-30 15:04:24 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:05:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 18ms (Views: 13.5ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:05:08 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:05:08 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:05:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:05:08 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:05:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:05:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:05:08 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:05:09 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"hFwRLvWYJsI2+oU1NILLAB5b6a0Hk3negXvOBwwLahQg0ptpvNJuMFYZj6Ipb8CFiufaiIypZTjk0/NrGEtylg==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.2ms) + +TypeError - no implicit conversion of Symbol into Integer: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:424:in `form_for' + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344072341180' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c532f49788132df2/variables" for ::1 at 2016-09-30 15:05:09 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:05:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"hFwRLvWYJsI2+oU1NILLAB5b6a0Hk3negXvOBwwLahQg0ptpvNJuMFYZj6Ipb8CFiufaiIypZTjk0/NrGEtylg==", "id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (1.8ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.5ms) + +TypeError - no implicit conversion of Symbol into Integer: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:424:in `form_for' + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344072341180' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3bee5793df9ef757/variables" for ::1 at 2016-09-30 15:05:36 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:05:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"hFwRLvWYJsI2+oU1NILLAB5b6a0Hk3negXvOBwwLahQg0ptpvNJuMFYZj6Ipb8CFiufaiIypZTjk0/NrGEtylg==", "id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (1.7ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.6ms) + +TypeError - no implicit conversion of Symbol into Integer: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:424:in `form_for' + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344072341180' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/95f116817e089428/variables" for ::1 at 2016-09-30 15:05:49 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:09:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"hFwRLvWYJsI2+oU1NILLAB5b6a0Hk3negXvOBwwLahQg0ptpvNJuMFYZj6Ipb8CFiufaiIypZTjk0/NrGEtylg==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (2.3ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +TypeError - no implicit conversion of Symbol into Integer: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:424:in `form_for' + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344132220180' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/62ad65c2c7e35798/variables" for ::1 at 2016-09-30 15:09:44 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:10:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:10:29 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:10:29 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:10:29 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:10:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:10:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:10:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:10:29 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:10:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"WQqHTQW7YQm1qhPhrTEMUPksuzGOAyitdfuN0EdsllP9hA0KTPEp+9VJGXaw3AfVbZCIFAU5NEsQU7C8UyyO0Q==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (24.2ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.3ms) + +ArgumentError - wrong number of arguments (given 0, expected 2..5): + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:945:in `check_box' + app/views/tasks/update.html.erb:8:in `block in _app_views_tasks_update_html_erb__2235182821483419676_70344133871280' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344133871280' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8f7c0b6c88b37245/variables" for ::1 at 2016-09-30 15:10:30 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:10:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 15:10:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/update" for ::1 at 2016-09-30 15:10:55 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"w0I/v4cpXMG9g01oaqiwgmWq4EKy4e5E2ue7pe1fwj1nzLX4zmMUM91gR/93RbsH8RbTZznb8qK/T4bJ+R/avw==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (15) LIMIT 1 +  (0.0ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (2.3ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.3ms) + +ArgumentError - wrong number of arguments (given 0, expected 2..5): + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:945:in `check_box' + app/views/tasks/update.html.erb:8:in `block in _app_views_tasks_update_html_erb__2235182821483419676_70344072395840' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344072395840' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8478fec27667f753/variables" for ::1 at 2016-09-30 15:10:56 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to AddedCompletedCheckBox (20160930221321) +  (0.1ms) begin transaction +  (0.4ms) ALTER TABLE "tasks" ADD "completed" boolean DEFAULT 'f' + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160930221321"]] +  (1.6ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/" for ::1 at 2016-09-30 15:17:10 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-09-30 15:17:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/update" for ::1 at 2016-09-30 15:17:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"qU7qfq0ccTYeG2lqVVceBoIdVCYyuEqcjySK7adLdYQNwGA55FY5xH74Y/1IuhWDFqFnA7mCVnrqjLeBswttBg==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (16) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (2.2ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + +ArgumentError - wrong number of arguments (given 0, expected 2..5): + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:945:in `check_box' + app/views/tasks/update.html.erb:8:in `block in _app_views_tasks_update_html_erb__2235182821483419676_70344098551520' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344098551520' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0d466a032c325332/variables" for ::1 at 2016-09-30 15:17:13 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:17:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:17:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:17:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rEAZX0KpKVgXyQLvw1tFwIEYUPS/nqfyjM8FrL4FgjUIzpMYC+NhqncqCHjetk5FFaRj0TSkuxTpZzjAqkWatw==", "id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 15:17:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:18:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:18:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:18:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:18:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:18:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:18:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:18:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:18:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:18:36 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:18:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:18:38 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ZED6vmXB+g8lKLdp1CNDvBDvnyE9gFpsFUYvnoWg4jDAznD5LIuy/UXLvf7Jzkg5hFOsBLa6Ropw7hLykeD6sg==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (18.0ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `f' for #<#:0x007ff482bc4200>: + app/views/tasks/update.html.erb:20:in `_app_views_tasks_update_html_erb__2235182821483419676_70344070986520' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b8995d3c1dda2916/variables" for ::1 at 2016-09-30 15:18:38 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:19:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:19:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:19:02 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:19:02 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:19:02 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:19:02 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:19:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:19:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:19:02 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:19:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:19:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"2geK9sV5eF7+REsLgh/TJ2b6nNcuCWPrC3//oBRzfgh+iQCxjDMwrJ6nQZyf8tii8kav8qUzfw1u18LMADNmig==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (8.9ms) +Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/update" for ::1 at 2016-09-30 15:19:07 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (66.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/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/SK/.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/SK/.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/SK/.rvm/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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.8ms) + + +Started GET "/tasks/14/update" for ::1 at 2016-09-30 15:19:44 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/14/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.7ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (36.0ms) + Rendered /Users/SK/.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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (71.3ms) + + +Started GET "/" for ::1 at 2016-09-30 15:19:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:19:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:19:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Fs77ERo0n4+gDLlQ60Z+ox08DP28f78XyegNAMd5Wq+yQHFWU37XfcDvs8f2q3UmiYA/2DdFo/GsQDBs0zlCLQ==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (23.2ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `tasks_update_path' for #<#:0x007ff482f78450> +Did you mean? tasks_path: + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344124852020' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f5471c1599258231/variables" for ::1 at 2016-09-30 15:19:49 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:20:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-30 15:20:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:20:09 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:20:09 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:20:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:20:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:20:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:20:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:20:09 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:20:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:20:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"L2CYRtcXYHvG175YIMznRGOdBcC46sNoe81klyQN48mL7hIBnl0oiaY0tM89IezB9yE25TPQ344eZVn7ME37Sw==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/update" for ::1 at 2016-09-30 15:20:15 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (29.2ms) + Rendered /Users/SK/.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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (69.3ms) + + +Started GET "/tasks/14/update" for ::1 at 2016-09-30 15:20:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (27.2ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.6ms) + +NameError - undefined local variable or method `tasks_update_path' for #<#:0x007ff484569160> +Did you mean? tasks_path: + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344124852020' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f385f78721cb853f/variables" for ::1 at 2016-09-30 15:20:33 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:20:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-09-30 15:20:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:20:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:20:35 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:20:35 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:20:35 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:20:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:20:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:20:35 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:20:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:20:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"hCxDmTK2JLzhD1lhuVjFUEJKTu/NN2T1Z8v4WkhBSTsgosnee/xsToHsU/aktc7V1vZ9ykYNeBMCY8U2XAFRuQ==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (26.5ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `tasks_update_path' for #<#:0x007ff48a23b410> +Did you mean? tasks_path: + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344124852020' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/99878c830eb89e0a/variables" for ::1 at 2016-09-30 15:20:37 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:20:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:20:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:20:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"KEVxpYN/wXCJk96b/SKHl9FZB6qFdBz08P4JeHe6XICMy/viyjWJgulw1Azgz4wSReU0jw5OABKVVjQUY/pEAg==", "id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.1ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (1.7ms) +Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks" for ::1 at 2016-09-30 15:20:57 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (46.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (34.5ms) + Rendered /Users/SK/.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/SK/.rvm/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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (70.6ms) + + +Started GET "/tasks/14/update" for ::1 at 2016-09-30 15:21:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (20.4ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `tasks_update_path' for #<#:0x007ff482ee94f8> +Did you mean? tasks_path: + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344072708240' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/cfc9fa059e75c8d9/variables" for ::1 at 2016-09-30 15:21:19 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:21:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:21:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:21:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"l8LXDHg2QLUYa02Lc0IxCoNtUcQ9TSUm74alKbwVVZgzTF1LMXwIR3iIRxxurzqPF9Fi4bZ3OcCKLphFqFVNGg==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (24.1ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `tasks_update_path' for #<#:0x007ff48a158818> +Did you mean? tasks_path: + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344072708240' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ba96680aeb97b801/variables" for ::1 at 2016-09-30 15:21:22 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:22:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:22:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (14.2ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_path' for #<#:0x007ff482d54ef8> +Did you mean? video_path: + app/views/tasks/show.html.erb:10:in `_app_views_tasks_show_html_erb__3452670098134048103_70344071867040' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a274ab23102d6bc1/variables" for ::1 at 2016-09-30 15:22:03 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:22:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:22:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:22:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:22:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:22:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:22:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:22:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:22:32 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:22:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (16.7ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.3ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007ff48b0b1968>: + app/views/tasks/show.html.erb:10:in `_app_views_tasks_show_html_erb__3452670098134048103_70344140751480' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/603e77c87f77ed80/variables" for ::1 at 2016-09-30 15:22:34 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:22:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (13.4ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_path' for #<#:0x007ff48a3e6918> +Did you mean? video_path: + app/views/tasks/show.html.erb:10:in `_app_views_tasks_show_html_erb__3452670098134048103_70344134044020' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/edd3b9b67da11812/variables" for ::1 at 2016-09-30 15:22:50 -0700 + + +Started POST "/__better_errors/ba96680aeb97b801/variables" for ::1 at 2016-09-30 15:22:53 -0700 + + +Started POST "/__better_errors/edd3b9b67da11812/variables" for ::1 at 2016-09-30 15:22:54 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:23:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:23:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (16.5ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `edit_path' for #<#:0x007ff4844c1988> +Did you mean? video_path: + app/views/tasks/show.html.erb:10:in `_app_views_tasks_show_html_erb__3452670098134048103_70344084149100' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/dbe27d7d25bc52c4/variables" for ::1 at 2016-09-30 15:23:06 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:23:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:23:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:23:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"UF9MTGOI7ERiGfwt+iEkqo+njsSAtzktj/BibNk5Aln00cYLKsKktgL69rrnzC8vGxu94QuNJcvqWF8AzXka2w==", "id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (21.0ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.3ms) + +NameError - undefined local variable or method `tasks_update_path' for #<#:0x007ff48b1c5548> +Did you mean? tasks_path: + app/views/tasks/update.html.erb:6:in `_app_views_tasks_update_html_erb__2235182821483419676_70344072708240' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/0a5ac8475db5ef07/variables" for ::1 at 2016-09-30 15:23:27 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:23:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:23:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:23:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"smXTMRF5N5LZtvDwN5s9yLiBUrr5ZraOfkkPnX0HB2gW61l2WDN/YLlV+mcqdjZNLD1hn3Jcqmgb4TLxaUcf6g==", "id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.1ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (1.3ms) +Completed 200 OK in 20ms (Views: 17.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks" for ::1 at 2016-09-30 15:23:50 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (46.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (31.2ms) + Rendered /Users/SK/.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/SK/.rvm/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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (72.3ms) + + +Started GET "/" for ::1 at 2016-09-30 15:24:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:24:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:24:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"l8pBh++iHT1i63PaDN74T2sIuSSbiAcJyQH8883HCZwzRMvApuhVzwIIeU0RM/PK/7SKARCyG++sqcGf2YcRHg==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks" for ::1 at 2016-09-30 15:24:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ofsPTWY1NYBsdqeXKpN3Ukw6nhwi8taGFWr6X5po0FkFdYUKL399cgyVrQA3fnzX2IatOanIymBwwsczjijI2w==", "task"=>{"completed"=>"1"}, "commit"=>"Update Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (0) LIMIT 1 +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `title=' for nil:NilClass: + app/controllers/tasks_controller.rb:43:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/c0631606ee518336/variables" for ::1 at 2016-09-30 15:24:46 -0700 + + +Started POST "/__better_errors/c0631606ee518336/eval" for ::1 at 2016-09-30 15:24:58 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:25:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:25:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:25:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"klar9G2R4u1uoYKK7Y4Ugh0skRazPvxujhh6W9/wxOI22CGzJNuqHw5CiB3wYx8HiZCiMzgE4IjrsEc3y7DcYA==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks" for ::1 at 2016-09-30 15:25:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"LdWnqemtu7kAwDqfjBzfDOUDM++9qr2MsMmXjNnfrT2JWy3uoOfzS2AjMAiR8dSJcb8AyjaQoWrVYargzZ+1vw==", "task"=>{"completed"=>"1"}, "commit"=>"Update Task"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.1ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered public/404.html (0.4ms) +Completed 404 Not Found in 7ms (Views: 4.1ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks" for ::1 at 2016-09-30 15:26:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"LdWnqemtu7kAwDqfjBzfDOUDM++9qr2MsMmXjNnfrT2JWy3uoOfzS2AjMAiR8dSJcb8AyjaQoWrVYargzZ+1vw==", "task"=>{"completed"=>"1"}, "commit"=>"Update Task"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered public/404.html (0.0ms) +Completed 404 Not Found in 10ms (Views: 3.6ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/14/update" for ::1 at 2016-09-30 15:26:08 -0700 +Processing by TasksController#update as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/14/update" for ::1 at 2016-09-30 15:26:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:26:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:26:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:26:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:26:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:26:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:26:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:26:10 -0700 + + +Started PATCH "/tasks" for ::1 at 2016-09-30 15:26:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"dCt/HnlFbc53MObsbcGThWhJJv5hT/C7SV0MWUjQhbbQpfVZMA8lPBfT7HtwLJgA/PUV2+p17F0s9TE1XJCdNA==", "task"=>{"completed"=>"1"}, "commit"=>"Update Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.1ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered public/404.html (0.0ms) +Completed 404 Not Found in 4ms (Views: 1.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/14/update" for ::1 at 2016-09-30 15:26:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:26:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:26:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:26:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:26:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:26:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:26:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:26:36 -0700 + + +Started PATCH "/tasks" for ::1 at 2016-09-30 15:26:38 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"laNKlMV1s+inY0Rd0PUjlB/zaCJWtoO32JnsiDSyuAwxLcDTjD/7GseATsrNGCgRi09bB92Mn1G9MdHkIPKgjg==", "task"=>{"completed"=>"1"}, "commit"=>"Update Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered public/404.html (0.0ms) +Completed 404 Not Found in 4ms (Views: 1.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 15:27:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:27:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:27:23 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"I1nbMBZk9YdYF1PYudlBcVdcbakv/4+XF+zqTbdv8smH11F3Xy69dTj0WU+kNEr0w+BejKTFk3FyRNchoy/qSw==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (0.2ms) +Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 15:27:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:27:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (15.4ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `edit_path' for #<#:0x007ff48a00ab28> +Did you mean? video_path: + app/views/tasks/show.html.erb:10:in `_app_views_tasks_show_html_erb__3452670098134048103_70344073522760' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3e9383a3884f4cea/variables" for ::1 at 2016-09-30 15:27:52 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:28:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:28:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (17.3ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007ff48b2b5c00>: + app/views/tasks/show.html.erb:10:in `_app_views_tasks_show_html_erb__3452670098134048103_70344141807640' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a5bd24875a81822b/variables" for ::1 at 2016-09-30 15:28:09 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:28:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:28:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (19.6ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `edit_task_path' for #<#:0x007ff482d66900> +Did you mean? edit_path: + app/views/tasks/show.html.erb:10:in `_app_views_tasks_show_html_erb__3452670098134048103_70344071901940' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/31ce96279a9a905c/variables" for ::1 at 2016-09-30 15:28:37 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:28:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:28:50 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/14/edit"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (44.6ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (33.8ms) + Rendered /Users/SK/.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/SK/.rvm/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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (69.5ms) + + +Started GET "/" for ::1 at 2016-09-30 15:29:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:29:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:29:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"U2S4YyiixSiHkyvC3xnoJ8/W3E7Pe99BEOuR4+Q3HrH36jIkYeiN2udwIVXC9OOiW2rva0RBw6d1Q6yP8HcGMw==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (24.1ms) +Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `tasks_update_path' for #<#:0x007ff48a211c78> +Did you mean? tasks_path: + app/views/tasks/edit.html.erb:6:in `_app_views_tasks_edit_html_erb___1784831567976895171_70344133072680' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b74d7140e1081897/variables" for ::1 at 2016-09-30 15:29:12 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:29:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:29:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:29:31 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"6d+rk0bD8mj6/9qom8YwZLYczR1Lb3X055p33zAkf3FNUSHUD4m6mpoc0D+GKzvhIqD+OMBVaRKCMkqzJGRn8w==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks" for ::1 at 2016-09-30 15:29:33 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (46.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (29.9ms) + Rendered /Users/SK/.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/SK/.rvm/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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (65.8ms) + + +Started GET "/tasks/14/edit" for ::1 at 2016-09-30 15:29:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:30:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:30:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 28ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:30:09 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"+XjdBy6NceQvv3wCrhvCC+WXq2Qh8I1T1bhyK012lphd9ldAZ8c5Fk9cdpWz9smOcSuYQarKkbWwEE9HWTaOGg==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (32.7ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `tasks_update_path' for #<#:0x007ff48789aa20> +Did you mean? tasks_path: + app/views/tasks/edit.html.erb:6:in `_app_views_tasks_edit_html_erb___1784831567976895171_70344111344300' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/628ecc873196e422/variables" for ::1 at 2016-09-30 15:30:09 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:32:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-30 15:32:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:32:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:32:31 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"91ZZ0ffyVS+N+GRwcz6hIbyfUJ1mNA/CE9lhxbTlb7VT2NOWvrgd3e0bbudu06qkKCNjuO0OEyR2cVypoKV3Nw==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (22.7ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +NameError - undefined local variable or method `tasks_update_path' for #<#:0x007ff48b1996f0> +Did you mean? tasks_path: + app/views/tasks/edit.html.erb:6:in `_app_views_tasks_edit_html_erb___1784831567976895171_70344141226380' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/35a155a93ae82325/variables" for ::1 at 2016-09-30 15:32:32 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:32:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:32:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:32:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"UP5wRRH+WdDVWKn7hbSx+jaYZIQFs/2opnO1Gwx/MGP0cPoCWLQRIrW7o2yYWbp/oiRXoY6J4U7D24h3GD8o4Q==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:33:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:33:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:33:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:33:00 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:33:00 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:33:00 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:33:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:33:00 -0700 + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:33:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"bAIQO0MV7vI4+pttU19OlWsUgZn4KJ0Sm9/OIVg6S7HIjJp8Cl+mAFgZkfpOskUQ/6iyvHMSgfT+d/NNTHpTMw==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (5.8ms) +Completed 200 OK in 31ms (Views: 29.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks" for ::1 at 2016-09-30 15:33:04 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (46.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (34.0ms) + Rendered /Users/SK/.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/SK/.rvm/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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (73.7ms) + + +Started GET "/" for ::1 at 2016-09-30 15:34:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:34:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:34:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"UC32RBXXUgG5/84ET+a+hPFCzMYERnMmRx45+VATZDb0o3wDXJ0a89kcxJNSC7UBZf7/4498b8AitgSVRFN8tA==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks" for ::1 at 2016-09-30 15:34:51 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.8ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-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/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (29.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.1ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms) + Rendered /Users/SK/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (64.6ms) + + +Started GET "/" for ::1 at 2016-09-30 15:36:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:37:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:37:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"m8Ekew4IUerEiMGn0P10MBhiO98SmwxhhEpn9EIc9xk/T648R0IZGKRryzDNEH+1jN4I+pmhEIfh4lqYVlzvmw==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:37:16 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"L5Z8ehVmRfSo6lVxqxLo9aPeTfZHSZTnJ+zfszzgBESLGPY9XCwNBsgJX+a2/+NwN2J+08xziAFCROLfKKAcxg==", "task"=>{"completed"=>"1"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.1ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (0.0ms) +Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 15:37:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 22ms (Views: 22.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:37:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:37:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 22ms (Views: 16.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:37:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"rURvDK6lbBR90CSkvynYVCInJYeqVGe4BNdjdFLz/aUJyuVL5+8k5h0zLjOixNPRtpsWoiFue15hf14YRrPlJw==", "id"=>"14"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:38:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"iZcuiE4If68taKLgwzm+0ZNLusubpOSny0v8e4+rpygtGaTPB0I3XU2LqHfe1LVUB/eJ7hCe+EGu48EXm+u/qg==", "task"=>{"completed"=>"1"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", "2016-09-30 22:38:04.081906"], ["id", 14]] +  (1.3ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/update.html.erb within layouts/application (0.0ms) +Completed 200 OK in 26ms (Views: 14.0ms | ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-09-30 15:38:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:38:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:38:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:38:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:38:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:38:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:38:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:38:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:38:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:38:12 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:38:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"SxmU4YamxeZ03gWMgkF0feFtPy9YjlJEnqcpGXpxC0vvlx6mz+yNFBQ9DxufrH/4ddEMCtO0TqL7DxR1bjETyQ==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (14) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:41:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.9ms) +Completed 200 OK in 27ms (Views: 25.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-09-30 15:41:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/edit" for ::1 at 2016-09-30 15:41:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"LgPLa5SouMWEQ8oveioKKEgT5bMoOM1Qz7TDK5Q64ruKjUEs3eLwN+SgwLhnxwGt3K/WlqMC0baqHP5HgHr6OQ==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (16) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/edit" for ::1 at 2016-09-30 15:42:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"Qmn1aeX8Xh/gF23/aOhgHcPDiD8vbaczVM0I3/i6SD/m538urLYW7YD0Z2h1BWuYV3+7GqRXu9UxZTWz7PpQvQ==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (16) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/16/edit" for ::1 at 2016-09-30 15:43:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (16) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (5.2ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:43:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:43:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:43:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:43:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:43:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:43:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:43:27 -0700 + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + + +Started GET "/tasks/16/edit" for ::1 at 2016-09-30 15:44:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE (16) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 31ms (Views: 23.8ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:44:47 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:44:47 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:44:47 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:44:47 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:44:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:44:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:44:47 -0700 + + +Started GET "/tasks/16/edit" for ::1 at 2016-09-30 15:44:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (16) LIMIT 1 + Rendered tasks/edit.html.erb within layouts/application (1.2ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/16/edit" for ::1 at 2016-09-30 15:45:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 29ms (Views: 21.0ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:45:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:45:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:45:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:45:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:45:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:45:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:45:20 -0700 + + +Started PATCH "/tasks/16/update" for ::1 at 2016-09-30 15:45:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZsOllRwNzjJAEu9v30y8GYqnOvi6nU6lZGc0ipQbBiTCTS/SVUeGwCDx5fjCobecHhsJ3TGnUkMBzwnmgFsepg==", "task"=>{"title"=>"Finally", "description"=>"Working... ", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (0) LIMIT 1 +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `title=' for nil:NilClass: + app/controllers/tasks_controller.rb:43:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/690c830f217dc793/variables" for ::1 at 2016-09-30 15:45:30 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:45:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 27ms (Views: 25.1ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:45:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:45:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"F52QsH+Iuvk/03Pz/Azdt6IUfrkEpVZPMJ4/4TMHveOzExr3NsLyC18weWTh4dYyNqhNnI+fSqlVNgKNJ0elYQ==", "id"=>"14"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:46:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"1mA9NaxAJ1GxY/m7rzKupM0iVNP2D9K5GehmumbwTspy7rdy5Qpvo9GA8yyy36UhWZ5n9n01zl98QFvWcrBWSA==", "task"=>{"title"=>"Something", "description"=>"New?", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE (0) LIMIT 1 +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `title=' for nil:NilClass: + app/controllers/tasks_controller.rb:43:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/63e21fd58f1b5187/variables" for ::1 at 2016-09-30 15:46:05 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:47:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:47:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:47:29 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"FCS5CzH+S64QBdMfrGED2PlO8wQOG65LFOqA8yMAO22wqjNMeLQDXHDm2YixjAhdbfLAIYUhsq1xQr2fN0Aj7w==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:47:38 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"FfZDkDd5ADPSeRDpNNd4HiV8j5IX/XRTPjK/lsIEMvaxeMnXfjNIwbKaGn4pOnObscC8t5zHaLVbmoL61kQqdA==", "task"=>{"title"=>"Thank you", "description"=>"Chris!", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=0: + activerecord (4.2.7) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a34ad9b9ee5a1b3e/variables" for ::1 at 2016-09-30 15:47:38 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:47:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:47:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:47:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"klrUOZ33Kuqb5FmnXQzYTm9UWxv4ra43C/T1aL43+SQ21F5+1L1iGPsHUzBA4dPL++hoPnOXstFuXMgEqnfhpg==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:48:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"fK2Rz3/DWw7Jh8gPSGEP+KHCOzYHSIXOl21MtKKbq+nYIxuINokT/KlkwphVjAR9NX4IE4xymSjyxXHYttuzaw==", "task"=>{"title"=>"Thank you", "description"=>"Chris!", "completed"=>"0"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", nil]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=: + activerecord (4.2.7) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/249934ecd7c83533/variables" for ::1 at 2016-09-30 15:48:06 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:48:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 28ms (Views: 25.6ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:48:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:48:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"tlXDMMR8nqjdA4ZJmHWRiur3sM7b97D0duSnyXJswaES20l3jTbWWr3gjN6FmJoPfkuD61DNrBITTJqlZizZIw==", "id"=>"14"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/controllers/tasks_controller.rb:52:in `edit' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/eef3776aff2c8251/variables" for ::1 at 2016-09-30 15:48:35 -0700 + + +Started GET "/tasks/14/edit" for ::1 at 2016-09-30 15:48:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 27ms (Views: 20.9ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:48:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"NQRzaK+HAP1ujNkPvKR4K2a2XtpNSKKWoURJUOPCxOaRivkv5s1IDw5v05ihSXOu8gpt/8ZyvnDE7HQ894LcZA==", "task"=>{"title"=>"Will this work", "description"=>"Maybe not", "completed"=>"0"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 0]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound - Couldn't find Task with 'id'=0: + activerecord (4.2.7) lib/active_record/core.rb:155:in `find' + app/controllers/tasks_controller.rb:41:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b529a7228e76fa94/variables" for ::1 at 2016-09-30 15:48:54 -0700 + + +Started GET "/tasks/14/update" for ::1 at 2016-09-30 15:49:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.4ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/controllers/tasks_controller.rb:43:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/b7a5e74c29e99a19/variables" for ::1 at 2016-09-30 15:49:53 -0700 + + +Started GET "/tasks/14/update" for ::1 at 2016-09-30 15:49:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/controllers/tasks_controller.rb:43:in `update' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ecc2cc880b40b8f3/variables" for ::1 at 2016-09-30 15:49:54 -0700 + + +Started GET "/tasks/14/edit" for ::1 at 2016-09-30 15:49:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 15:49:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 15:49:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 15:49:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 15:49:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 15:49:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 15:49:59 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 15:49:59 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:50:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"U+GnWXnMJUu/0xZL6xVADsGHh5JXQt7D/jmh0GjCktz3by0eMIZtud8wHNz2+EuLVTu0t9x4wiWbkZy8fIKKXg==", "task"=>{"title"=>"thank you", "description"=>"?", "completed"=>"0"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "title" = ?, "description" = ?, "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "thank you"], ["description", "?"], ["completed", "f"], ["updated_at", "2016-09-30 22:50:04.134375"], ["id", 14]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-09-30 15:50:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 31ms (Views: 30.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:50:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:50:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"fjqFu3Uv4OWq6cXs8sBu7DGn6u90BtLKz/A/hk9f1TratA/8PGWoF8oKz3vvLWVppRvZyv88ziyqWALqWx/NuA==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:50:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"OuIgkxLCmcCaJpJfcZ5LUFtT/tYAg2EU8mUt3Shul1KebKrUW4jRMvrFmMhsc0DVz+/N84u5ffKXzRCxPC6P0A==", "task"=>{"title"=>"thank you", "description"=>"?", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "t"], ["updated_at", "2016-09-30 22:50:10.353156"], ["id", 14]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-09-30 15:50:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:50:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:51:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 31ms (Views: 30.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 15:51:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/edit" for ::1 at 2016-09-30 15:51:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"Bejz1cZnwRskJHADzJCJMWslc7wZEqUI4nnVi7S43cChZnmSjy2J6UTHepTRfYK0/5lAmZIoue6H0ejnoPjFQg==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/update" for ::1 at 2016-09-30 15:51:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"lJcVr3V+sm87vFc6LqlJvXTPgByecyNHzO8Ork9VNH0wGZ/oPDT6nVtfXa0zREI44HOzORVJP6GpRzPCWxUs/w==", "task"=>{"title"=>"sjkdhfa", "description"=>"kjhsakdjf", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "t"], ["updated_at", "2016-09-30 22:51:14.824079"], ["id", 15]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-09-30 15:51:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:51:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:52:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:52:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:52:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"7Pb7bqjHsrlXtze02rRIeVQ0r/QG2Zgl1l64L0pBenRIeHEp4Y36SzdUPSPHWUP8wIic0Y3jhMOz9oVDXgFi9g==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (7.0ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NameError - uninitialized constant ActionView::CompiledTemplates::Datetime: + activesupport (4.2.7) lib/active_support/dependencies.rb:533:in `load_missing_constant' + activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing' + app/views/tasks/edit.html.erb:16:in `block in _app_views_tasks_edit_html_erb___1784831567976895171_70344140785760' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/edit.html.erb:6:in `_app_views_tasks_edit_html_erb___1784831567976895171_70344140785760' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/3895494d9303f8e4/variables" for ::1 at 2016-09-30 15:52:58 -0700 + + +Started GET "/tasks/14/edit" for ::1 at 2016-09-30 15:53:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:53:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Q1A7/8Py43JaGwAUxPkWeYViHLCRUZ/WSlCYK7LeJHvn3rG4irirgDr4CoPZFB38Ed4vlRprgzAv+KVHpp48+Q==", "task"=>{"title"=>"thank you", "description"=>"?", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:53:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:53:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:53:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"0bSorU3ClPrXroSvYaG2ZttkXuQpva0X5avNRFANnWR1OiLqBIjcCLdNjjh8TL3jT9htwaKHsfGAA/AoRE2F5g==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:53:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:54:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:54:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"Y3vNrc1II7yhIf61CxNCU/F78UzNoX209rrXTnPVLtTH9UfqhAJrTsHC9CIW/knWZcfCaUabYVKTEuoiZ5U2Vg==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (9.5ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) + +NameError - uninitialized constant ActionView::CompiledTemplates::Datetime: + activesupport (4.2.7) lib/active_support/dependencies.rb:533:in `load_missing_constant' + activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing' + app/views/tasks/edit.html.erb:16:in `block in _app_views_tasks_edit_html_erb___1784831567976895171_70344134457540' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/edit.html.erb:6:in `_app_views_tasks_edit_html_erb___1784831567976895171_70344134457540' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1c662d6e4a43cfe8/variables" for ::1 at 2016-09-30 15:54:01 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:55:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 15:55:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/edit" for ::1 at 2016-09-30 15:55:14 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"Ah1Vp2xrWrCE1LUODsoEjknTsJjzvzocW8oJ5WwlTEWmk9/gJSESQuQ3v5kTJw8L3W+DvXiFJvo+YjSJeGVUxw==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/edit.html.erb within layouts/application (7.8ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +NameError - uninitialized constant ActionView::CompiledTemplates::Datetime: + activesupport (4.2.7) lib/active_support/dependencies.rb:533:in `load_missing_constant' + activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing' + app/views/tasks/edit.html.erb:16:in `block in _app_views_tasks_edit_html_erb___1784831567976895171_70344111247560' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' + actionview (4.2.7) lib/action_view/helpers/capture_helper.rb:38:in `capture' + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:444:in `form_for' + app/views/tasks/edit.html.erb:6:in `_app_views_tasks_edit_html_erb___1784831567976895171_70344111247560' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/7bc431fc338a736d/variables" for ::1 at 2016-09-30 15:55:14 -0700 + + +Started POST "/__better_errors/7bc431fc338a736d/eval" for ::1 at 2016-09-30 15:55:47 -0700 + + +Started GET "/" for ::1 at 2016-09-30 15:56:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 15:56:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/edit" for ::1 at 2016-09-30 15:56:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"TfuwdfDxdDLa07RmMxECwXdfvhvfh2NzuxENpUbXfizpdToyubs8wLowvvEu/AlE4+ONPlS9f5XeuTDJUpdmrg==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/update" for ::1 at 2016-09-30 15:56:15 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"GZOBhveeYfWCNI98iGC0dMUDzf+djX8m1lnd+nrbmO69HQvBvtQpB+LXheuVjb/xUb/+2ha3Y8Cz8eCWbpuAbA==", "task"=>{"title"=>"sjkdhfa", "description"=>"kjhsakdjf", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.0ms) 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-09-30 15:56:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:56:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 15:57:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/edit" for ::1 at 2016-09-30 15:57:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"obO2ecmbw9XWVC503lWPgx04e+D3aGJ1ClWdqWLKzTEFPTw+gNGLJ7a3JOPDuIQGiYRIxXxSfpNv/aDFdorVsw==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/update" for ::1 at 2016-09-30 15:57:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"CDClsLZPbseOR/Te9wuq3QyZYpLuReFK9boi1Jk/eSqsvi/3/wUmNe6k/knq5qFYmCVRt2V//ayQEh+4jX9hqA==", "task"=>{"title"=>"sjkdhfa", "description"=>"kjhsakdjf", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.0ms) 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-09-30 15:57:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 15:58:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.7ms) +Completed 200 OK in 29ms (Views: 27.3ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 15:58:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 15:58:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"gKIImQBvUV79e/v5jUmsk4GMD/YXz2p0zW0ULFLr9k4kLILeSSUZrJ2Y8W6QpKcWFTA805z1dpKoxSlARqvuzA==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 15:58:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"QHLYslggWVIr37688V+KXgfVASlr3Ea4dH17XRCXjoPk/FL1EWoRoEs8tCvssoHbk2kyDODmWl4R1UYxBNeWAQ==", "task"=>{"title"=>"thank you", "description"=>"?", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 15:58:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 16:00:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 16:00:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/edit" for ::1 at 2016-09-30 16:00:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"16ntb2UVdNYdTCp5ATD5l1Ff1901achfWSW+7ZlQTp9zJ2coLF88JH2vIO4c3fISxePk+L5T1Lk8jYOBjRBWHQ==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/edit.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/update" for ::1 at 2016-09-30 16:00:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+n7jZ6zFiKlzJmRNhM+WyYfN1kPip1kxxFk7+Z8ZowNe8Gkg5Y/AWxPFbtqZIp1ME3HlZmmdRdeh8QaVi1m7gQ==", "task"=>{"title"=>"sjkdhfa", "description"=>"kjhsakdjf", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.0ms) 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-09-30 16:00:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 16:00:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 16:00:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/edit" for ::1 at 2016-09-30 16:00:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"r+J8u0Vry3K8/MBFhS1Ld8fXWJN4sA6FPIu0FGu2gYwLbPb8DCGDgNwfytKYwEDyU2trtvOKEmNZI4l4f/aZDg==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/update" for ::1 at 2016-09-30 16:00:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9LKswGsMSIimthr5ruQpScvWUzHRkbqPwcPqIC41rERQPCaHIkYAesZVEG6zCSLMX2pgFFqrpmmka9dMOnW0xg==", "task"=>{"title"=>"sjkdhfa", "description"=>"kjhsakdjf ...", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "kjhsakdjf ..."], ["updated_at", "2016-09-30 23:00:53.074364"], ["id", 15]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-09-30 16:00:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 16:01:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 16:01:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 16:01:14 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"r4lFcpxsIE2UT3t1FP7K3CTMRkOr0GAHCmOGXXelHfYLB8811SZov/SsceIJE8FZsHB1ZiDqfOFvy7sxY+UFdA==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 16:01:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"K2RjKSUZ49tiFlqWY6Ph0l1Ri1RzBjg0lLV4xWm1d3GP6ulubFOrKQL1UAF+TupXye24cfg8JNLxHUWpffVv8w==", "task"=>{"title"=>"thank you", "description"=>"?jkl", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "?jkl"], ["updated_at", "2016-09-30 23:01:17.577558"], ["id", 14]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-09-30 16:01:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 16:01:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 16:16:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 16:16:50 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 16:16:50 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 16:16:50 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 16:16:50 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 16:16:50 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 16:16:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 16:16:50 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 16:16:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-09-30 16:16:53 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"GmoIjcFBZsAdaOdhlcCuoupmY7gN8GKKc230urC2wRm+5ILKiAsuMn2L7faILaUnftpQnYbKfmwWxcnWpPbZmw==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 16:16:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"uZdpr0Vh/MUdmjRL4ZZgpvR9Cxo2O7YvKXchjJeiEKsdGePoDCu0N315Ptz8e2sjYME4P70BqslM3xzgg+IIKQ==", "task"=>{"title"=>"thank you", "description"=>"?jkl", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) 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-09-30 16:16:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 16:17:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/15/edit" for ::1 at 2016-09-30 16:17:09 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"GO+RP8R8udHzv9D3F1ChOPWUb9HMyDCDSCxpcjuHuGG8YRt4jTbxI5Nc2mAKvaq9YShc9EfyLGUthFQeL8eg4w==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/update" for ::1 at 2016-09-30 16:17:11 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"x3IXC1ouQoEVYg86E+VeNsakrCT0f7Otbc8ebipfXZ1j/J1ME2QKc3WBBa0OCFWzUhifAX9Fr0sIZyMCPh9FHw==", "task"=>{"title"=>"sjkdhfajkhsfjk", "description"=>"kjhsakdjf ...", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "sjkdhfajkhsfjk"], ["updated_at", "2016-09-30 23:17:11.815792"], ["id", 15]] +  (0.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-09-30 16:17:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-09-30 16:18:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/edit" for ::1 at 2016-09-30 16:18:09 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"clMRf6vuulEz+33W18pZap+7TJmFl0SDMck8mOIzYTXW3Zs44qTyo1MYd0HKJ1LvCwd/vA6tWGVUYQH09nN5tw==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/edit.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 16:20:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-09-30 16:20:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/edit" for ::1 at 2016-09-30 16:20:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"+2n2FzJ4PGuqGCH7mReNJ4gFZ9oCP//8mQTa+8XhkLhf53xQezJ0mcr7K2yE+oaiHLlU/4kF4xr8rOeX0aGIOg==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/update" for ::1 at 2016-09-30 16:20:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Nma0XJDrjARPmDRAULkJg6UNwA2pyExxeXRB2++Iz4eS6D4b2aHE9i97PtdNVAIGMbHzKCLyUJcc3Hy3+8jXBQ==", "task"=>{"title"=>"Finally", "description"=>"Working", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "t"], ["updated_at", "2016-09-30 23:20:45.047920"], ["id", 16]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-09-30 16:20:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-30 16:20:52 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-30 16:20:56 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Gnv3j8XIpmb9IUVsC4jS6ZSottq72PTsr/r2jUuqzjm+9X3IjILulJ3CT/sWZdlsABSF/zDi6ArKUsvhX+rWuw==", "task"=>{"title"=>"x", "description"=>"y", "owner"=>"z"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("title", "description", "owner", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "x"], ["description", "y"], ["owner", "z"], ["created_at", "2016-09-30 23:20:56.026697"], ["updated_at", "2016-09-30 23:20:56.026697"]] +  (0.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-09-30 16:20:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 16:22:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-30 16:22:14 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-09-30 16:22:18 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"p9Y73FR+7AunEzg+Zl/pLbMfy/5IDx+ktgjD2Dp6CyUDWLGbHTSk+cfwMql7suKoJ6P428M1A0LToP60LjoTpw==", "task"=>{"title"=>"a", "description"=>"b", "owner"=>"c"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "owner", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "a"], ["description", "b"], ["owner", "c"], ["created_at", "2016-09-30 23:22:18.549245"], ["updated_at", "2016-09-30 23:22:18.549245"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-09-30 16:22:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 07:49:35 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 198ms (Views: 190.0ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-10-03 07:49:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/19" for ::1 at 2016-10-03 07:49:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19/edit" for ::1 at 2016-10-03 07:49:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"4Aotmb4/PblGfxN/gut81drigsg3SK14enuctL7mb6JEhKfe93V1SyacGeifBndQTl6x7bxysZ4f06HYqqZ3IA==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] + Rendered tasks/edit.html.erb within layouts/application (16.8ms) +Completed 200 OK in 54ms (Views: 48.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19/update" for ::1 at 2016-10-03 07:49:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"s6qTE5gQEEwsvxklcpAy7/n8+RCFHGNcAMz4GfXQAR8XJBlU0VpYvkxcE7JvfTlqbUDKNQ4mf7plZMV14ZAZnQ==", "task"=>{"title"=>"a", "description"=>"b", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "t"], ["updated_at", "2016-10-03 14:49:49.771601"], ["id", 19]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-10-03 07:49:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-03 07:49:58 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-10-03 07:50:08 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Djf99z26vFfWaxWA8FTZYkX2u5uQpyd4HyntWHR/w5mquXewdPD0pbaIHxftudLn0UqIvhudO556gdA0YD/bGw==", "task"=>{"title"=>"Task", "description"=>"Some task", "owner"=>"Me"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "owner", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Task"], ["description", "Some task"], ["owner", "Me"], ["created_at", "2016-10-03 14:50:08.435737"], ["updated_at", "2016-10-03 14:50:08.435737"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-10-03 07:50:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-03 07:51:00 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-10-03 07:51:19 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"YFqU+nsV9Bc4eFT3PR5gQRpTbY5dKPhOzJsUHzg30mzE1B69Ml+85VibXmAg82vEju9eq9YS5KipMylzLHfK7g==", "task"=>{"title"=>"Some other task", "description"=>"testing completion button", "owner"=>"um?"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("title", "description", "owner", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Some other task"], ["description", "testing completion button"], ["owner", "um?"], ["created_at", "2016-10-03 14:51:19.010752"], ["updated_at", "2016-10-03 14:51:19.010752"]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2016-10-03 07:51:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 07:53:07 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/index.html.erb:18: syntax error, unexpected end-of-input, expecting keyword_end: + app/views/tasks/index.html.erb:16:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/782c75f0ece339d4/variables" for ::1 at 2016-10-03 07:53:07 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/" for ::1 at 2016-10-03 07:54:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + +NoMethodError - undefined method `[]' for nil:NilClass: + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___3762818279823556590_70360180137380' + activerecord (4.2.7) lib/active_record/relation/delegation.rb:46:in `each' + app/views/tasks/index.html.erb:3:in `_app_views_tasks_index_html_erb___3762818279823556590_70360180137380' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/ae08c680da96b34b/variables" for ::1 at 2016-10-03 07:54:04 -0700 + + +Started GET "/" for ::1 at 2016-10-03 07:55:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 07:55:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 07:55:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 07:55:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 07:55:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 07:55:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 07:55:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 07:55:20 -0700 + + +Started GET "/tasks/show/19" for ::1 at 2016-10-03 07:55:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/19/edit" for ::1 at 2016-10-03 07:55:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"9fONRUQJ8IAIvFeqX11OQCrl53ih2ptjEXdYzPiCs3ZRfQcCDUO4cmhfXT1CsEXFvlnUXSrgh4V032Wg7MKr9A==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] + Rendered tasks/edit.html.erb within layouts/application (1.5ms) +Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/19/update" for ::1 at 2016-10-03 07:55:34 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"FKW9v1Y33dNJOofiprxnLcgrjONmeUfOpi1yi1B2Ko6wKzf4H32VISnZjXW7UWyoXJe/xu1DWyjDhU/nRDYyDA==", "task"=>{"title"=>"a", "description"=>"b", "completed"=>"0"}, "commit"=>"Update Task", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "f"], ["updated_at", "2016-10-03 14:55:34.851378"], ["id", 19]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-10-03 07:55:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 07:56:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 07:56:05 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 07:56:05 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 07:56:05 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 07:56:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 07:56:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 07:56:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 07:56:05 -0700 + + +Started GET "/tasks/show/18" for ::1 at 2016-10-03 07:56:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (16.8ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.2ms) + +NameError - undefined local variable or method `task' for #<#:0x007ffc02ed6380> +Did you mean? tasks_url + @tasks: + app/views/tasks/show.html.erb:6:in `_app_views_tasks_show_html_erb__2153034967271006371_70360178796560' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d83dbc893a2495d0/variables" for ::1 at 2016-10-03 07:56:06 -0700 + + +Started GET "/tasks/show/18" for ::1 at 2016-10-03 07:56:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 07:56:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 07:56:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 07:56:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 07:56:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 07:56:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 07:56:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 07:56:32 -0700 + + +Started PATCH "/tasks/18/edit" for ::1 at 2016-10-03 07:56:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"DbEmNqxNCTVAuVMrryFMZIJJE5Y5JcnuOF7+1r2uczapP6xx5QdBxyBaWbyyzEfhFvUgs7If1Qhd9sO6qe5rtA==", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]] + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/18/update" for ::1 at 2016-10-03 07:56:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"iiFXN8exOPi4DfHvHV+6Hg6U3fgMt0QObOiRIYqZhT8ur91wjvtwCtju+3gAsrGbmiju3YeNWOgJQKxNntmdvQ==", "task"=>{"title"=>"x", "description"=>"y", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "t"], ["updated_at", "2016-10-03 14:56:36.529084"], ["id", 18]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-10-03 07:56:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 08:02:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 08:02:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 08:02:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 08:02:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 08:02:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 08:02:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 08:02:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 08:02:25 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-10-03 08:02:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError - unknown type of %string +...ytask[:updated_at].strftime(%b, %d/%m/%Y) );@output_buffer.s... +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected end-of-input, expecting ')' +...ytask[:updated_at].strftime(%b, %d/%m/%Y) );@output_buffer.s... +... ^: + app/views/tasks/show.html.erb:7:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/31acab91101fd2cb/variables" for ::1 at 2016-10-03 08:02:27 -0700 + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + + +Started GET "/tasks/show/14" for ::1 at 2016-10-03 08:09:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected '<' + <% @mytask[:updated_at].strfti... + ^: + app/views/tasks/show.html.erb:8:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/8065b9c67bd269c8/variables" for ::1 at 2016-10-03 08:09:54 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-10-03 08:10:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected '<' + <% @mytask[:updated_at].strfti... + ^: + app/views/tasks/show.html.erb:8:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a93c112ed1fe4dbf/variables" for ::1 at 2016-10-03 08:10:36 -0700 + + +Started GET "/tasks/show/14" for ::1 at 2016-10-03 08:10:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.2ms) + +SyntaxError - unknown type of %string +...ytask[:updated_at].strftime(%a) );@output_buffer.safe_append... +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:8: syntax error, unexpected end-of-input, expecting ')' +...ytask[:updated_at].strftime(%a) );@output_buffer.safe_append... +... ^: + app/views/tasks/show.html.erb:8:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/dec23499f067eb24/variables" for ::1 at 2016-10-03 08:10:47 -0700 + + +Started GET "/" for ::1 at 2016-10-03 08:11:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:11:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms) + +SyntaxError - unknown type of %string + good_day = @mytask[:updated_at].strftime(%a, %d, %m, %Y) + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected end-of-input, expecting ')' + good_day = @mytask[:updated_at].strftime(%a, %d, %m, %Y) + ^: + app/views/tasks/show.html.erb:7:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/37b430b4cd37063b/variables" for ::1 at 2016-10-03 08:11:57 -0700 + + +Started GET "/" for ::1 at 2016-10-03 08:12:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:12:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.2ms) + +SyntaxError - unknown type of %string + good_day = @mytask[:updated_at].parse.strftime(%a, %d, %m, %Y) + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected end-of-input, expecting ')' + good_day = @mytask[:updated_at].parse.strftime(%a, %d, %m, %Y) + ^: + app/views/tasks/show.html.erb:7:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/03e0d3d6d4e3035a/variables" for ::1 at 2016-10-03 08:12:55 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:13:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.1ms) + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:24:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms) + +SyntaxError - unknown type of %string +...d=( Date.strptime(good_day, %a, %m, %d, %Y) );@output_buffe... +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:9: syntax error, unexpected end-of-input, expecting ')' +...d=( Date.strptime(good_day, %a, %m, %d, %Y) );@output_buffe... +... ^: + app/views/tasks/show.html.erb:9:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d1a83d0307b1362b/variables" for ::1 at 2016-10-03 08:24:04 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:25:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError - unknown type of %string + good_day = Date.strptime(@mytask[:updated_at], %a, %m, %d, %Y) + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected end-of-input, expecting ')' + good_day = Date.strptime(@mytask[:updated_at], %a, %m, %d, %Y) + ^: + app/views/tasks/show.html.erb:7:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/dbfbd95727a09b50/variables" for ::1 at 2016-10-03 08:25:09 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:25:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.2ms) + +SyntaxError - unknown type of %string + good_day = Datetime.strptime(@mytask[:updated_at], %a, %m, %d, %Y) + ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/show.html.erb:7: syntax error, unexpected end-of-input, expecting ')' + good_day = Datetime.strptime(@mytask[:updated_at], %a, %m, %d, %Y) + ^: + app/views/tasks/show.html.erb:7:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/780168f044f7e4d4/variables" for ::1 at 2016-10-03 08:25:44 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:26:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (6.0ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + +NameError - uninitialized constant ActionView::CompiledTemplates::Datetime: + activesupport (4.2.7) lib/active_support/dependencies.rb:533:in `load_missing_constant' + activesupport (4.2.7) lib/active_support/dependencies.rb:184:in `const_missing' + app/views/tasks/show.html.erb:7:in `_app_views_tasks_show_html_erb__2153034967271006371_70360177328720' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d26aa948b97d9d5f/variables" for ::1 at 2016-10-03 08:27:00 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:27:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (11.0ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.1ms) + +NoMethodError - undefined method `strptime' for Fri, 30 Sep 2016 23:20:45 UTC +00:00:Time +Did you mean? strftime +Did you mean? strftime: + activesupport (4.2.7) lib/active_support/time_with_zone.rb:373:in `rescue in method_missing' + activesupport (4.2.7) lib/active_support/time_with_zone.rb:371:in `method_missing' + app/views/tasks/show.html.erb:7:in `_app_views_tasks_show_html_erb__2153034967271006371_70360255170400' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/053a1d8e52c2efdf/variables" for ::1 at 2016-10-03 08:27:27 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:27:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 08:27:35 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 08:27:35 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 08:27:35 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 08:27:35 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 08:27:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 08:27:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 08:27:35 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:27:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 08:27:50 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 08:27:50 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 08:27:50 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 08:27:50 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 08:27:50 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 08:27:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 08:27:50 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:27:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 08:27:55 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 08:27:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 08:27:55 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 08:27:55 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 08:27:55 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 08:27:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 08:27:55 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:28:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 08:28:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 08:28:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 08:28:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 08:28:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 08:28:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 08:28:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 08:28:20 -0700 + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 08:56:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-03 08:56:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/17" for ::1 at 2016-10-03 08:56:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/17" for ::1 at 2016-10-03 08:56:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 08:56:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 08:56:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 08:56:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 08:56:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 08:56:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 08:56:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 08:56:36 -0700 + + +Started GET "/tasks/show/17" for ::1 at 2016-10-03 08:56:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 08:56:45 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 08:56:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 08:56:45 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 08:56:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 08:56:45 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 08:56:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 08:56:45 -0700 + + +Started PATCH "/tasks/17/edit" for ::1 at 2016-10-03 08:56:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"BOcImWOSKpR3VSqFRdn77T7so2jHzy1Uczbd2/yH306gaYLeKthiZhe2IBJYNPBoqlCQTUz1MbIWnuC36MfHzA==", "id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]] + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 09:06:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-10-03 09:06:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-10-03 09:06:29 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"IzWGIGoEIMS4LcqZFyPQuYwYFD8+56DvPkO2+n/dkv2HuwxnI05oNtjOwA4Kzts8GKQnGrXdvAlb64uWa52Kfw==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError - syntax error, unexpected ':', expecting ')' +...r.append=( f.label id="title" :title );@output_buffer.safe_a... +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/edit.html.erb:10: syntax error, unexpected ':', expecting ')' +...nd=( f.label id="description" :description );@output_buffer.... +... ^ +/Users/SK/Coding/ada/08-Ada-Week_8/TaskListRails/app/views/tasks/edit.html.erb:13: syntax error, unexpected ':', expecting ')' +...pend=( f.label id="completed" :completed );@output_buffer.sa... +... ^: + app/views/tasks/edit.html.erb:7:in `' + actionview (4.2.7) lib/action_view/template.rb:296:in `compile' + actionview (4.2.7) lib/action_view/template.rb:245:in `block (2 levels) in compile!' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:244:in `block in compile!' + actionview (4.2.7) lib/action_view/template.rb:232:in `compile!' + actionview (4.2.7) lib/action_view/template.rb:144:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/d964cc5ce57e4fd3/variables" for ::1 at 2016-10-03 09:06:30 -0700 + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-10-03 09:06:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"IzWGIGoEIMS4LcqZFyPQuYwYFD8+56DvPkO2+n/dkv2HuwxnI05oNtjOwA4Kzts8GKQnGrXdvAlb64uWa52Kfw==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (3.0ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 09:06:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 09:06:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 09:06:49 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 09:06:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 09:06:49 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 09:06:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 09:06:49 -0700 + + +Started PATCH "/tasks/14/update" for ::1 at 2016-10-03 09:06:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+BnZ6ZG3mOcf1pXcNfk7DGWihz9QcAwuB0EMKaxVu+9cl1Ou2P3QFX81n0soFDCJ8R60GttKEMhi6TFFuBWjbQ==", "task"=>{"title"=>"thank you", "description"=>"?jkl", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 09:06:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:07:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/16/edit" for ::1 at 2016-10-03 09:07:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"VZInj1Z6DfMjcXgrLsrNi2MtcYKiQWabq+bg31XaeqPxHK3IHzBFAUOScrwzJ8YO95FCpyl7en3OTt2zQZpiIQ==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/update" for ::1 at 2016-10-03 09:07:08 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"u84HGKtmRRUMgVYWKBPC0XRYDsbEXth8NNBl4sDrN44fQI1f4iwN52xiXIE1/slU4OQ9409kxJpReFiO1KsvDA==", "task"=>{"title"=>"Finally", "description"=>"Working", "completed"=>"0"}, "commit"=>"Update Task", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "f"], ["updated_at", "2016-10-03 16:07:08.109862"], ["id", 16]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2016-10-03 09:07:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:07:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/16/edit" for ::1 at 2016-10-03 09:07:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"m4VyoFgihHOqPOS1JDlRnc68UzhpV+9s/cdx9yZSBJ0/C/jnEWjMgcrf7iI51FoYWgBgHeJt84qYb0ybMhIcHw==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16/update" for ::1 at 2016-10-03 09:07:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9V/F3Q+fL4H3nlFBiIH8nECh8/AAzn7afeCg7TQ33LVR0U+aRtVnc5d9W9aVbPcZ1B3A1Yv0YjwYSJ2BIHfENw==", "task"=>{"title"=>"Finally", "description"=>"Working", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "t"], ["updated_at", "2016-10-03 16:07:26.948034"], ["id", 16]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-10-03 09:07:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/16" for ::1 at 2016-10-03 09:07:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-03 09:08:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-03 09:08:35 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-03 09:08:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-03 09:08:35 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-03 09:08:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-03 09:08:35 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-03 09:08:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-03 09:08:35 -0700 + + +Started GET "/tasks/show/15" for ::1 at 2016-10-03 09:08:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/edit" for ::1 at 2016-10-03 09:08:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"FJ+bUGCdIefOP4m+z6w+JbuMNKb/gA6f23ocrxVqRG+wEREXKddpFa7cgynSQTWgLzAHg3S6Enm+0iHDASpc7Q==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/edit.html.erb within layouts/application (1.5ms) +Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-03 10:24:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-04 12:40:44 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.6ms) +Completed 200 OK in 327ms (Views: 317.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-10-04 12:40:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-04 12:40:47 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (44.1ms) +Completed 200 OK in 58ms (Views: 57.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-10-04 12:41:14 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ycsiQTfvn/Va0dsnn/r8OrMXO00OOh9wzWk5K/c1Riv7H/QPM2CB5dQu1ynjbpfc8ENpmkGbpQmUASxakcYHGQ==", "task"=>{"title"=>"Red Rum", "description"=>"Scary quote", "owner"=>"Stephen King"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("title", "description", "owner", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Red Rum"], ["description", "Scary quote"], ["owner", "Stephen King"], ["created_at", "2016-10-04 19:41:14.019657"], ["updated_at", "2016-10-04 19:41:14.019657"]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-10-04 12:41:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 32ms (Views: 30.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-04 12:46:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/21" for ::1 at 2016-10-04 12:46:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/21/edit" for ::1 at 2016-10-04 12:46:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"HYHJULVkXUM0VqoExt8TRYQhCgSwIcQIayPDNKr94LQvVR8esetDU7qppgq6S3ijx3VY0/+AfnEyS9ZFzA6hhg==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 21]] + Rendered tasks/edit.html.erb within layouts/application (6.6ms) +Completed 200 OK in 31ms (Views: 21.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/21/edit" for ::1 at 2016-10-04 12:46:56 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"+bYMTnd7GfiyotPGomjDAGfaQqY2otOyhbfbEV6/HrjLYtoAc/QH6Dxd38je/KjmJI4QcXkDacvc385gOExfig==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 21]] + Rendered tasks/edit.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/21/update" for ::1 at 2016-10-04 12:47:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"0y/hrC3pvnFdaJE6uhlE6kv8ldN4D24cd8AbK+0m4Hrh+zfiKWagYdOXnTTGjS8MCKjHBDeu1GUuqA5ai9WhSA==", "task"=>{"title"=>"Some other task", "description"=>"testing completion button", "completed"=>"1"}, "commit"=>"Update Task", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 21]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "t"], ["updated_at", "2016-10-04 19:47:00.460514"], ["id", 21]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/" for ::1 at 2016-10-04 12:47:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-04 12:47:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-04 12:48:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-04 12:48:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-04 12:48:42 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-04 12:48:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-04 12:48:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-04 12:48:42 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-04 12:48:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-04 12:48:42 -0700 + + +Started GET "/tasks/show/19" for ::1 at 2016-10-04 12:48:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/19/edit" for ::1 at 2016-10-04 12:48:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"NmjMkBhw0vWE80dd7lw+1b5FI95h9iudZy2vpvxAdnYEvBreHP/M5QoMS1OSyFUz/RFxCS5XkeQ+RbrXmrM3RA==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] + Rendered tasks/_form.html.erb (11.4ms) + Rendered tasks/edit.html.erb within layouts/application (18.2ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.1ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/_form.html.erb:3:in `_app_views_tasks__form_html_erb___1647582859629461041_70313074097500' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:25:in `render' + actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:32:in `render' + app/views/tasks/edit.html.erb:2:in `_app_views_tasks_edit_html_erb__1432955245540518846_70313079275360' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5d2ee2f62cfd5ce2/variables" for ::1 at 2016-10-04 12:48:48 -0700 + + +Started PATCH "/tasks/19/edit" for ::1 at 2016-10-04 12:49:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"gvpL64/yEfNItuxMCFUKcrM5VB2UAhWQPVDLHXNSeoOwLp2li30P48ZJ4EJ0wWGU8G0Gytujr+lkON5sFaE7sQ==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] + Rendered tasks/_form.html.erb (1.7ms) + Rendered tasks/edit.html.erb within layouts/application (2.6ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.4ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/_form.html.erb:3:in `_app_views_tasks__form_html_erb___1647582859629461041_70313074097500' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:25:in `render' + actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:32:in `render' + app/views/tasks/edit.html.erb:2:in `_app_views_tasks_edit_html_erb__1432955245540518846_70313079275360' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/96740642a9196811/variables" for ::1 at 2016-10-04 12:49:27 -0700 + + +Started PATCH "/tasks/19/edit" for ::1 at 2016-10-04 12:49:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"gvpL64/yEfNItuxMCFUKcrM5VB2UAhWQPVDLHXNSeoOwLp2li30P48ZJ4EJ0wWGU8G0Gytujr+lkON5sFaE7sQ==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] + Rendered tasks/_form.html.erb (1.5ms) + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.4ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/_form.html.erb:3:in `_app_views_tasks__form_html_erb___1647582859629461041_70313074097500' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:25:in `render' + actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:32:in `render' + app/views/tasks/edit.html.erb:2:in `_app_views_tasks_edit_html_erb__1432955245540518846_70313079275360' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/5e0a1f39f829b267/variables" for ::1 at 2016-10-04 12:49:52 -0700 + + +Started POST "/__better_errors/5e0a1f39f829b267/variables" for ::1 at 2016-10-04 12:49:57 -0700 + + +Started PATCH "/tasks/19/edit" for ::1 at 2016-10-04 12:50:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"gvpL64/yEfNItuxMCFUKcrM5VB2UAhWQPVDLHXNSeoOwLp2li30P48ZJ4EJ0wWGU8G0Gytujr+lkON5sFaE7sQ==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] + Rendered tasks/_form.html.erb (6.8ms) + Rendered tasks/edit.html.erb within layouts/application (7.7ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/_form.html.erb:3:in `_app_views_tasks__form_html_erb___1647582859629461041_70313074097500' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:25:in `render' + actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:32:in `render' + app/views/tasks/edit.html.erb:2:in `_app_views_tasks_edit_html_erb__1432955245540518846_70313079275360' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/a144f40f41789f82/variables" for ::1 at 2016-10-04 12:50:04 -0700 + + +Started GET "/tasks/19/edit" for ::1 at 2016-10-04 12:50:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.4ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/_form.html.erb:3:in `_app_views_tasks__form_html_erb___1647582859629461041_70313074097500' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:25:in `render' + actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:32:in `render' + app/views/tasks/edit.html.erb:2:in `_app_views_tasks_edit_html_erb__1432955245540518846_70313079275360' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/1920b16e9e0ac111/variables" for ::1 at 2016-10-04 12:50:19 -0700 + + +Started GET "/" for ::1 at 2016-10-04 12:50:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-10-04 12:50:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-10-04 12:50:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"Mccvxlop2oEjasV+6aFx23N7f1B872YgbFGVPZdp4zkDE/mIXqbEka2VyXCVNRo9MC8thzNO3Fk1OYBM8ZqiCw==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/_form.html.erb:3:in `_app_views_tasks__form_html_erb___1647582859629461041_70313074097500' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:25:in `render' + actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:32:in `render' + app/views/tasks/edit.html.erb:2:in `_app_views_tasks_edit_html_erb__1432955245540518846_70313079275360' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/f00c6ab7777e508f/variables" for ::1 at 2016-10-04 12:50:25 -0700 + + +Started GET "/tasks/14/edit" for ::1 at 2016-10-04 12:51:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.5ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/_form.html.erb:3:in `_app_views_tasks__form_html_erb___1647582859629461041_70313074097500' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:25:in `render' + actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:32:in `render' + app/views/tasks/edit.html.erb:2:in `_app_views_tasks_edit_html_erb__1432955245540518846_70313079275360' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/230e328b4d610894/variables" for ::1 at 2016-10-04 12:51:17 -0700 + + +Started GET "/" for ::1 at 2016-10-04 12:51:30 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.1ms) +Completed 200 OK in 252ms (Views: 241.9ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-10-04 12:51:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-10-04 12:51:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/edit" for ::1 at 2016-10-04 12:51:34 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"rGBZ2/wuE1gsdMkYZmFQ4j/9AbUCnRYrEe8KoxoX7eCetI+V+KENSKKLxRYa9TsEfKlTYk08rFJIhx/SfOSs0g==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/_form.html.erb (3.0ms) + Rendered tasks/edit.html.erb within layouts/application (5.4ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.1ms) + +ArgumentError - First argument in form cannot contain nil or be empty: + actionview (4.2.7) lib/action_view/helpers/form_helper.rb:432:in `form_for' + app/views/tasks/_form.html.erb:3:in `_app_views_tasks__form_html_erb__1423975934418541657_70236668064840' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/partial_renderer.rb:309:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:51:in `render_partial' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:25:in `render' + actionview (4.2.7) lib/action_view/helpers/rendering_helper.rb:32:in `render' + app/views/tasks/edit.html.erb:2:in `_app_views_tasks_edit_html_erb___832097366883280255_70236700662440' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_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.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/2998de0db5bc502f/variables" for ::1 at 2016-10-04 12:51:34 -0700 + + +Started POST "/__better_errors/2998de0db5bc502f/eval" for ::1 at 2016-10-04 12:51:49 -0700 + + +Started POST "/__better_errors/2998de0db5bc502f/eval" for ::1 at 2016-10-04 12:51:55 -0700 + + +Started GET "/tasks/15/edit" for ::1 at 2016-10-04 12:52:42 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/_form.html.erb (16.9ms) + Rendered tasks/edit.html.erb within layouts/application (18.4ms) +Completed 200 OK in 38ms (Views: 33.1ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-10-04 12:52:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-10-04 12:52:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-10-04 12:52:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"HA4J3qgTAJJYOsiPBMrwFVp5rXrbLQEzmpneYoAIkm8u2t+QrJwegtbFxIF4XpvzGS3/rZSMu0rD8csT5vvTXQ==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/_form.html.erb (1.4ms) + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-10-04 12:52:55 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"HLqhSt2u4Gch/Wn+jA0tZ6A8bnT4t5AAMidQvXsqrmQubncE2SH+d68CZfDwmUaB42g8o7cWKnlrT0XMHdnvVg==", "task"=>{"title"=>"thank you", "description"=>"?jkl", "owner"=>"Sam I AM", "completed"=>"0"}, "commit"=>"Edit", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "f"], ["updated_at", "2016-10-04 19:52:55.931581"], ["id", 14]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-10-04 12:52:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-10-04 12:53:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-10-04 12:53:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"AwD2Z3Lx5PGG6UU48ZLgvM9MwV1eQuYArbPUsbmkw4Ix1CApdn764QgWSTaNBotajBiTihHjXHn028HA31eCsA==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/_form.html.erb (1.3ms) + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-10-04 12:53:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ri4ziMpbB3FrY+ae3JtYaopPd/zk3vDPOSVbF+fWt46c+uXGztQZYeWc6pCgDzOMyRslK6t/SrZgTU5mgSX2vA==", "task"=>{"title"=>"thank you", "description"=>"?jkl", "owner"=>"Sam I AM", "completed"=>"1"}, "commit"=>"Edit", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "t"], ["updated_at", "2016-10-04 19:53:13.067802"], ["id", 14]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/" for ::1 at 2016-10-04 12:53:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/14/edit" for ::1 at 2016-10-04 12:53:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/_form.html.erb (1.4ms) + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-04 12:53:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-10-04 12:53:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-10-04 12:53:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"w0hkFkT6X3ZLheRwjcBOdvDTxHE9X/ObGvib7ZgxhYPxnLJYQHVBZsV66H7xVCWQs4eWpnL+SeJDkI6c/sLEsQ==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/_form.html.erb (1.3ms) + Rendered tasks/edit.html.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-10-04 12:53:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"HmHfr+taAI0d7pv8B/aWBjMHeVeSHTCwyEPwWFTIGOkstQnh79UenZMRl/J7Yv3gcFMrgN28ismRK+UpMjtZ2w==", "task"=>{"title"=>"thank you", "description"=>"?jkl", "owner"=>"Sam I AM", "completed"=>"0"}, "commit"=>"Update", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.1ms) begin transaction + SQL (0.1ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "f"], ["updated_at", "2016-10-04 19:53:40.474791"], ["id", 14]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-10-04 12:53:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-04 12:54:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-04 12:54:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-04 12:54:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-04 12:54:30 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-04 12:54:30 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-04 12:54:30 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-04 12:54:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-04 12:54:30 -0700 + + +Started GET "/" for ::1 at 2016-10-04 12:55:02 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.7ms) +Completed 200 OK in 246ms (Views: 238.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-10-04 12:55:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-10-04 12:55:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"QS56Vuxj5exUD3wmKAAQuHZNLOGIn+YPe6qhbXK978hz+qwY6Oz7/NrwcChUlHteNRl+Nsc+XHYiwrQcFE6u+g==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/_form.html.erb (12.6ms) + Rendered tasks/edit.html.erb within layouts/application (15.8ms) +Completed 200 OK in 39ms (Views: 34.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-10-04 12:55:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"hjSQrn5B++i4QIcbD5PBadPH7gVFbezDbztsglYw+8u04Ebges7l+Da/ixVzB6qPkJO80grMVro2U3nzMMO6+Q==", "task"=>{"title"=>"help me", "description"=>"make this", "owner"=>"work", "completed"=>"0"}, "commit"=>"edit", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "title" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "help me"], ["description", "make this"], ["updated_at", "2016-10-04 19:55:14.780567"], ["id", 14]] +  (0.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-10-04 12:55:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-04 12:55:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-04 12:56:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-04 12:57:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 98ms (Views: 97.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/main.self-092522a0bfdedf42aac636ec9afcb14e66ab74be43cacb353b8cd424f4889def.css?body=1" for ::1 at 2016-10-04 12:57:41 -0700 + + +Started GET "/assets/normalize.self-1acb2b1a830f290caaec567affb88ccca3abbd41358b888a30ba17bd78289bbc.css?body=1" for ::1 at 2016-10-04 12:57:41 -0700 + + +Started GET "/tasks/14/edit" for ::1 at 2016-10-04 12:59:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/edit.html.erb within layouts/application (3.0ms) +Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/14/edit" for ::1 at 2016-10-04 13:00:28 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/_form.html.erb (1.1ms) + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-04 13:00:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-04 13:02:20 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.1ms) +Completed 200 OK in 318ms (Views: 305.7ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-10-04 13:02:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-04 13:03:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/main.self-70114e97a0ad4d13d86f15199db004342ea6570d1d41de4a97a5b6a4a79e1c15.css?body=1" for ::1 at 2016-10-04 13:03:23 -0700 + + +Started GET "/" for ::1 at 2016-10-04 13:03:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/main.self-e65957d2091c4a0bb6727d331c08cc5cda01d01ba3a138e55f88ac77ab3e3506.css?body=1" for ::1 at 2016-10-04 13:03:59 -0700 + + +Started GET "/" for ::1 at 2016-10-16 10:36:24 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.1ms) +Completed 200 OK in 249ms (Views: 241.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/main.self-e65957d2091c4a0bb6727d331c08cc5cda01d01ba3a138e55f88ac77ab3e3506.css?body=1" for ::1 at 2016-10-16 10:36:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-16 10:36:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-16 10:36:25 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-10-16 10:36:27 -0700 +Processing by TasksController#new as HTML + Rendered tasks/_form.html.erb (15.5ms) + Rendered tasks/new.html.erb within layouts/application (19.0ms) +Completed 200 OK in 50ms (Views: 49.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-10-16 10:36:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/edit" for ::1 at 2016-10-16 10:36:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"authenticity_token"=>"3eq64B2DDU9GplJh6k+HTqEhOPS8fZPlFo1ss4rqob5Tttu/5H9r1usy4uG1BzOMDdCtEwxfKdEIh51npBA5Ag==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/_form.html.erb (1.2ms) + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 20ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-10-16 10:39:56 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 189ms (Views: 181.7ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-10-16 10:39:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-16 10:39:59 -0700 +Processing by TasksController#new as HTML + Rendered tasks/_form.html.erb (13.6ms) + Rendered tasks/new.html.erb within layouts/application (16.1ms) +Completed 200 OK in 44ms (Views: 43.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-10-16 10:43:09 -0700 +Processing by TasksController#new as HTML + Rendered tasks/_form.html.erb (1.1ms) + Rendered tasks/new.html.erb within layouts/application (1.9ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms) + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateUsers (20161018170340) +  (0.1ms) begin transaction +  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uid" varchar, "name" varchar, "provider" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161018170340"]] +  (1.8ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" diff --git a/main.css b/main.css new file mode 100644 index 000000000..9876b2e31 --- /dev/null +++ b/main.css @@ -0,0 +1,320 @@ +/*FORMATTING ACROSS ALL PAGES*/ + +body { + border: solid black; +} + +body header { + border: solid black; + border-top-width: 0; + border-right-width: 0; + border-left-width: 0; + display: flex; + justify-content: space-between; +} + +body header a { + text-decoration: none; + margin: 1rem; +} + +a { + color: black; +} + +a:hover { + color: green; +} + +a:visited { + color: pink; +} + +a:visited:hover { + color: blue; +} + +body header a h1 { + font-family: Verdana; + font-size: 3rem; + margin-top: 0rem; + color: black; +} + +nav ul { + padding-right: 0.5rem; +} + +nav li { + list-style: none; + margin: 0.5rem; + display: inline-block; + float: right; + vertical-align: baseline; + text-align: center; +} + +header nav li { + border: double; + border-width: 2px; + padding-top: 0.75rem; + padding-bottom: 0.75rem; +} + +footer { + clear: both; + border: solid black; + border-bottom-width: 0; + border-right-width: 0; + border-left-width: 0; + display: flex; + justify-content: space-between; + /*align-items: flex-start;*/ +} + +footer h4 { + font-size: 1rem; + padding: 1rem; + text-align: top; + vertical-align: top; +} + +#disclaimer { + width: 70%; + font-size: 0.75rem; + float: left; + margin: 1.5rem; + /*align-content: center;*/ +} + +footer img { + width: 3.5vw; + /*width: 50px;*/ +} + + +/*END OF FORMATTING ACROSS ALL PAGES*/ + +main h2 { + font-size: 2rem; + color: black; + margin-left: 1rem; + margin-bottom: 0; +} + +main h3 a { + text-decoration: none; + font-size: 1.5rem; + color: black; + margin-left: 1.5rem; + margin-bottom: 0; +} + +main p:not(.index-text) { + margin-left: 4rem; + margin-top: 0; +} + +.index-text { + background-color: rgba(0, 0, 0, 0.5); + color: white; + cursor: pointer; + display: table; + visibility: hidden; +} + +div.space-after { + width: 90%; + display: flex; + justify-content: flex-start; + align-items: flex-end; + margin: auto; + border: solid black; + border-top-width: 0; + /*border-bottom-width: 0;*/ +} + +#about { + width: 30%; +} + +#about:hover .index-text { + visibility: visible; +} + +#about img { + /*width: 330px;*/ + width: 22vw; + /*margin-top: 9%; + /*border-radius: 75%;*/ +} + +#after-about { + width: 50%; +} + +div.center-space { + width: 90%; + display: flex; + justify-content: center; + align-items: center; + margin: auto; + border: solid black; + border-bottom-width: 0; + border-top-width: 0; +} + +#portfolio:hover .index-text { + visibility: visible; +} + +#portfolio img { + width: 44vw; +} + +div.space-before { + width: 90%; + display: flex; + justify-content: flex-end; + align-items: flex-start; + margin: auto; + border: solid black; + /*border-top-width: 0;*/ + border-bottom-width: 0; +} + +#sundry { + /*display: inline-block;*/ + /*float: right;*/ + /*padding-left: 80%;*/ + /*margin: 10%;*/ + /*width: 30%;*/ +} + +#sundry:hover .index-text { + visibility: visible; +} + +#sundry img { + width: 22vw; + /*width: 330px;*/ +} + + +/*END OF INDEX FORMATTING*/ + + +/*ABOUT FORMATTING*/ + +#about-center-space { + width: 90%; + margin: auto; + display: flex; + border: solid black; + border-bottom-width: 0; + border-top-width: 0; +} + +#about-center-space img { + width: 60vw; +} + +/*PORTFOLIO FORMATTING*/ + +div.portfolio-center-space { + width: 90%; + margin: auto; + border: solid black; + border-bottom-width: 0; + border-top-width: 0; +} + +.portfolio-center-space article { + display: flex; + justify-content: space-between; + /*align-items: center;*/ + /*border: solid black;*/ +} + +section h3 a { + display: flex; +} + +.jumpstart { + display: block; + width: 100%; + border: solid black; + border-top-width: 0; + border-right-width: 0; + border-left-width: 0; +} + +.ruby img { + width: 8vw; + height: auto; + /*width: 300px;*/ + margin: 1rem; + margin-right: 2.5rem; +} + +.post-html-css { + border: solid black; + border-bottom-width: 0; + border-right-width: 0; + border-left-width: 0; +} + +.post-html-css img { + width: 10vw; + height: auto; + /*width: 300px;*/ + margin: 1.5rem 0 1rem 1rem; +} + + +/*END OF PORTFOLIO FORMATTING*/ + + +/*FORMATTING FOR SUNDRY.HTML*/ + +.center-space img { + width: 30vw; + height: auto; +} + +.activities article { + /*display: inline-block;*/ + border-top: solid black; +} + +.activities article section { + display: inline-block; + /*width: 50%;*/ +} + +.img-caption { + vertical-align: top; + width: 30%; + margin-top: 0; + margin-left: 1rem; +} + +section.img-caption h2 { + margin: 0 0.5rem 0.5rem 1rem; +} + +section.img-caption p { + margin: 0 0.5rem 0.5rem 1rem; +} + +.images { + object-fit: contain; + clear: both; + display: flex; + justify-content: flex-start; + align-items: center; +} + +#baking { + border-top-width: 0; +} diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml new file mode 100644 index 000000000..ae660d7a5 --- /dev/null +++ b/test/fixtures/users.yml @@ -0,0 +1,13 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + uid: MyString + name: MyString + provider: MyString + email: MyString + +two: + uid: MyString + name: MyString + provider: MyString + email: MyString diff --git a/test/models/user_test.rb b/test/models/user_test.rb new file mode 100644 index 000000000..82f61e010 --- /dev/null +++ b/test/models/user_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class UserTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 76394325fa56d2f8b22e104ce5eafa5177084cf4 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 18 Oct 2016 10:19:14 -0700 Subject: [PATCH 049/103] uncommented sqlite3 gem, added sessions controller --- Gemfile | 2 +- Gemfile.lock | 2 ++ app/assets/javascripts/sessions.coffee | 3 +++ app/assets/stylesheets/sessions.scss | 3 +++ app/controllers/sessions_controller.rb | 7 +++++++ app/helpers/sessions_helper.rb | 2 ++ app/views/sessions/create.html.erb | 2 ++ app/views/sessions/deactivate.html.erb | 2 ++ config/routes.rb | 4 ++++ log/development.log | 2 ++ test/controllers/sessions_controller_test.rb | 14 ++++++++++++++ test/test_helper.rb | 14 ++++++++++++++ 12 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 app/assets/javascripts/sessions.coffee create mode 100644 app/assets/stylesheets/sessions.scss create mode 100644 app/controllers/sessions_controller.rb create mode 100644 app/helpers/sessions_helper.rb create mode 100644 app/views/sessions/create.html.erb create mode 100644 app/views/sessions/deactivate.html.erb create mode 100644 test/controllers/sessions_controller_test.rb diff --git a/Gemfile b/Gemfile index 57b9894b6..5dc3693e2 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,7 @@ source 'https://rubygems.org' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.2.7' # Use sqlite3 as the database for Active Record -# gem 'sqlite3' +gem 'sqlite3' # Use SCSS for stylesheets gem 'sass-rails', '~> 5.0' # Use Uglifier as compressor for JavaScript assets diff --git a/Gemfile.lock b/Gemfile.lock index e986ee451..29c56b675 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -169,6 +169,7 @@ GEM 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.5) @@ -206,6 +207,7 @@ DEPENDENCIES sass-rails (~> 5.0) sdoc (~> 0.4.0) spring + sqlite3 turbolinks uglifier (>= 1.3.0) web-console (~> 2.0) diff --git a/app/assets/javascripts/sessions.coffee b/app/assets/javascripts/sessions.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/sessions.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/sessions.scss b/app/assets/stylesheets/sessions.scss new file mode 100644 index 000000000..7bef9cf82 --- /dev/null +++ b/app/assets/stylesheets/sessions.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the sessions controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb new file mode 100644 index 000000000..e9cb472a0 --- /dev/null +++ b/app/controllers/sessions_controller.rb @@ -0,0 +1,7 @@ +class SessionsController < ApplicationController + def create + end + + def deactivate + end +end diff --git a/app/helpers/sessions_helper.rb b/app/helpers/sessions_helper.rb new file mode 100644 index 000000000..309f8b2eb --- /dev/null +++ b/app/helpers/sessions_helper.rb @@ -0,0 +1,2 @@ +module SessionsHelper +end diff --git a/app/views/sessions/create.html.erb b/app/views/sessions/create.html.erb new file mode 100644 index 000000000..c251174fe --- /dev/null +++ b/app/views/sessions/create.html.erb @@ -0,0 +1,2 @@ +

Sessions#create

+

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

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

Sessions#deactivate

+

Find me in app/views/sessions/deactivate.html.erb

diff --git a/config/routes.rb b/config/routes.rb index 6c12d8d49..9102a8a17 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,5 +1,9 @@ Rails.application.routes.draw do + get 'sessions/create' + + get 'sessions/deactivate' + # root to: 'tasks#index' root 'tasks#index' diff --git a/log/development.log b/log/development.log index dc06da151..f41d8fe88 100644 --- a/log/development.log +++ b/log/development.log @@ -17216,3 +17216,5 @@ Migrating to CreateUsers (20161018170340) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161018170340"]]  (1.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" + ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" diff --git a/test/controllers/sessions_controller_test.rb b/test/controllers/sessions_controller_test.rb new file mode 100644 index 000000000..09d3ff79b --- /dev/null +++ b/test/controllers/sessions_controller_test.rb @@ -0,0 +1,14 @@ +require 'test_helper' + +class SessionsControllerTest < ActionController::TestCase + test "should get create" do + get :create + assert_response :success + end + + test "should get deactivate" do + get :deactivate + assert_response :success + end + +end diff --git a/test/test_helper.rb b/test/test_helper.rb index 92e39b2d7..e44686f5d 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -7,4 +7,18 @@ class ActiveSupport::TestCase fixtures :all # Add more helper methods to be used by all tests here... + +# /test/test_helper.rb + def setup + # Once you have enabled test mode, all requests + # to OmniAuth will be short circuited to use the mock authentication hash. + # A request to /auth/provider will redirect immediately to /auth/provider/callback. + OmniAuth.config.test_mode = true + + # The mock_auth configuration allows you to set per-provider (or default) authentication + # hashes to return during testing. + OmniAuth.config.mock_auth[:github] = OmniAuth::AuthHash.new({ + provider: 'github', uid: '123545', info: { email: "a@b.com", name: "Ada" } + }) + end end From 53ac337c5115ac355b0600bb7302e337982ced39 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 18 Oct 2016 10:22:39 -0700 Subject: [PATCH 050/103] new tests from curriculum --- test/controllers/sessions_controller_test.rb | 24 ++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/test/controllers/sessions_controller_test.rb b/test/controllers/sessions_controller_test.rb index 09d3ff79b..5cc975658 100644 --- a/test/controllers/sessions_controller_test.rb +++ b/test/controllers/sessions_controller_test.rb @@ -11,4 +11,28 @@ class SessionsControllerTest < ActionController::TestCase assert_response :success end + def login_a_user + request.env['omniauth.auth'] = OmniAuth.config.mock_auth[:github] + get :create, {provider: "github"} + end + + test "Can Create a user" do + assert_difference('User.count', 1) do + login_a_user + assert_response :redirect + assert_redirected_to root_path + end + end + + test "If a user logs in twice it doesn't create a 2nd user" do + assert_difference('User.count', 1) do + login_a_user + end + assert_no_difference('User.count') do + login_a_user + assert_response :redirect + assert_redirected_to root_path + end + end + end From 34c62d71ceb58105af575e35353dc6df913c86b0 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 18 Oct 2016 10:23:02 -0700 Subject: [PATCH 051/103] new test from curriculum, make sure users are logged in first --- test/controllers/tasks_controller_test.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb index 0ce9633f5..c46bd6186 100644 --- a/test/controllers/tasks_controller_test.rb +++ b/test/controllers/tasks_controller_test.rb @@ -36,4 +36,13 @@ class TasksControllerTest < ActionController::TestCase assert_response :success end + test "If a user is not logged in they cannot see their task." do + session[:user_id] = nil # ensure no one is logged in + + get :show, id: tasks(:sample_task).id + # if they are not logged in they cannot see the resource and are redirected to login. + assert_redirected session_path + assert_equal "You must be logged in first", flash[:notice] + end + end From 0d32c55efe03e13e931874f2ad6ead43871e295d Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 18 Oct 2016 10:23:27 -0700 Subject: [PATCH 052/103] added require minitest-reporters gem for color --- test/test_helper.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_helper.rb b/test/test_helper.rb index e44686f5d..bde5251e8 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,11 +1,15 @@ ENV['RAILS_ENV'] ||= 'test' require File.expand_path('../../config/environment', __FILE__) require 'rails/test_help' +require 'minitest-reporters' 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... # /test/test_helper.rb From 6d21565846e01bd8e033bc0582da1e86ae1afa72 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 18 Oct 2016 10:26:47 -0700 Subject: [PATCH 053/103] filled in user fixture --- test/fixtures/users.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml index ae660d7a5..c32442253 100644 --- a/test/fixtures/users.yml +++ b/test/fixtures/users.yml @@ -1,13 +1,13 @@ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html one: - uid: MyString - name: MyString - provider: MyString - email: MyString + uid: 1 + name: Grace Hopper + provider: GitHub + email: ghopper@techheroes.io two: - uid: MyString - name: MyString - provider: MyString - email: MyString + uid: 2 + name: Weli Dai + provider: GitHub + email: ghopper@techheroes.io From 788cf0e5724a3b1e7a6c5b5b1cd2700d7d1e6ab7 Mon Sep 17 00:00:00 2001 From: Sassa Kitka Date: Tue, 18 Oct 2016 10:26:56 -0700 Subject: [PATCH 054/103] rearranged tests --- test/controllers/sessions_controller_test.rb | 21 +++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/test/controllers/sessions_controller_test.rb b/test/controllers/sessions_controller_test.rb index 5cc975658..631fb2a32 100644 --- a/test/controllers/sessions_controller_test.rb +++ b/test/controllers/sessions_controller_test.rb @@ -1,15 +1,6 @@ require 'test_helper' class SessionsControllerTest < ActionController::TestCase - test "should get create" do - get :create - assert_response :success - end - - test "should get deactivate" do - get :deactivate - assert_response :success - end def login_a_user request.env['omniauth.auth'] = OmniAuth.config.mock_auth[:github] @@ -35,4 +26,16 @@ def login_a_user end end + test "should get create" do + get :create + assert_response :success + end + + test "should get deactivate" do + get :deactivate + assert_response :success + end + + + end From 19ea836d16e6b7e7998d8e312c595a30ad1071ce Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:34:59 -0700 Subject: [PATCH 055/103] added sessions routes, added routes headers --- config/routes.rb | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/config/routes.rb b/config/routes.rb index 9102a8a17..934f51029 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,8 +1,18 @@ Rails.application.routes.draw do - get 'sessions/create' +# ***** SESSIONS ROUTES ***** - get 'sessions/deactivate' + # get 'login' => 'sessions#new' + get 'logout' => 'sessions#destroy' + + get "/auth/:provider/callback" => "sessions#create" + + + # delete 'sessions/:id/destroy' => 'sessions#destroy', as: 'destroy_sessions' + + resources :sessions + + # ***** TASKS ROUTES ***** # root to: 'tasks#index' From 3f75a0f937df95981e474c4c607e2b7307db8367 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:35:35 -0700 Subject: [PATCH 056/103] added relationship to user --- app/models/task.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/models/task.rb b/app/models/task.rb index 935f76e12..b476c11a8 100644 --- a/app/models/task.rb +++ b/app/models/task.rb @@ -1,2 +1,3 @@ class Task < ActiveRecord::Base + belongs_to :user end From b9fc309f3ccc452e0cda52190c7d087c386203b1 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:36:04 -0700 Subject: [PATCH 057/103] added relationship to tasks, added build from github method --- app/models/user.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/models/user.rb b/app/models/user.rb index 4a57cf079..53ed204a6 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -1,2 +1,15 @@ class User < ActiveRecord::Base + has_many :tasks, dependent: :destroy + + validates :email, :uid, :provider, presence: true + + def self.build_from_github(auth_hash) + user = User.new + user.uid = auth_hash[:uid] + user.provider = 'github' + user.name = auth_hash['info']['name'] + user.email = auth_hash['info']['email'] + #raise to get info for auth hash + return user + end end From 7768392f83d7d4b16831e714589a85743b64c0bf Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:36:37 -0700 Subject: [PATCH 058/103] added import foundation, foundation overrides, app files --- app/assets/stylesheets/application.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index f9cd5b348..f659150b3 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -13,3 +13,9 @@ *= require_tree . *= require_self */ + +@import url('foundation.css'); + +@import url('foundation_and_overrides.css'); + +@import url('app.css'); \ No newline at end of file From 5e656892b5bfb9c96af3868ccebc5cd77dc25f65 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:36:59 -0700 Subject: [PATCH 059/103] added current user helper method --- app/controllers/application_controller.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index d83690e1b..fa8a3e477 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -2,4 +2,13 @@ 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 + + helper_method :current_user + +private + + def current_user + @current_user = User.find_by(id: session[:user_id] ) + end + end From a4a4114f75b4e6d61479d2f774729ae051f9034b Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:37:35 -0700 Subject: [PATCH 060/103] added nav class top bar and oauth logic --- app/views/layouts/application.html.erb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 46eeb110b..e3349dc77 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -7,6 +7,22 @@ <%= csrf_meta_tags %> + <%= yield %> From 9c85e2b4647e8a43689085c411295bf633bfdf04 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:38:01 -0700 Subject: [PATCH 061/103] added oauth logic --- app/views/tasks/index.html.erb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 654947d6a..3b0cab6ba 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -23,4 +23,12 @@ <% end %> -<%= button_to("Add Task", new_path, method: :get) %> \ No newline at end of file +<%= button_to("Add Task", new_path, method: :get) %> + +
  • + <% if current_user %> + <%= link_to 'Logout', logout_path %> + <% else %> + <%= link_to 'Login', "/auth/github/" %> + <% end %> +
  • \ No newline at end of file From 9c97bdcccbeb7a00c93627b9a8b3868fc817f2d4 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:38:33 -0700 Subject: [PATCH 062/103] rebuilt controller --- app/controllers/sessions_controller.rb | 29 +++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb index e9cb472a0..b5eef8189 100644 --- a/app/controllers/sessions_controller.rb +++ b/app/controllers/sessions_controller.rb @@ -1,7 +1,34 @@ class SessionsController < ApplicationController def create + auth_hash = request.env['omniauth.auth'] + #below is us saying we don't know them (unless they have a uid) + return redirect to login_failure_path unless auth_hash['uid'] + + @user = User.find_by(uid: auth_hash[:uid], provider: 'github') + #github knows them, but do we? if not, let's make them an account + if @user.nil? + # User doesn't match anything in the DB. + # Attempt to create a new user. + @user = User.build_from_github(auth_hash) + flash[:notice] = "Unable to Save the User" +#using method below to save time + return redirect_to root_path unless @user.save + # render :creation_failure unless @user.save + end + + # Save the user ID in the session + session[:user_id] = @user.id + + + # redirect_to sessions_path +#doing this other thing to save time + flash[:notice] = "Successfully Logged in!" + redirect_to root_path + end - def deactivate + def destroy + session[:user_id] = nil + redirect_to root_path end end From fc058895ca43cd2d94657c314fb61e91bd9a2015 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:38:57 -0700 Subject: [PATCH 063/103] space for my own styling --- app/assets/stylesheets/app.css | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 app/assets/stylesheets/app.css diff --git a/app/assets/stylesheets/app.css b/app/assets/stylesheets/app.css new file mode 100644 index 000000000..623a909fa --- /dev/null +++ b/app/assets/stylesheets/app.css @@ -0,0 +1,40 @@ +/*app.css*/ + + + /**************************************/ +/**GENERAL SECTION **/ + /**************************************/ + +.main { + +} + + /**************************************/ +/** DESKTOP NAVIATION **/ + /**************************************/ + + +.top-bar { + padding: 3%; +} + + + + /**************************************/ +/**HERO SECTION **/ + /**************************************/ + +.hero { + background-color: gray; + padding: 50px 30px + height: 15%; +} + + + + /**************************************/ +/**FOOTER **/ + /**************************************/ + + + From b21c1037ed84480d86d7e5a1c4a5e373a440abb1 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:39:11 -0700 Subject: [PATCH 064/103] the shoulders of giants --- app/assets/stylesheets/foundation.css | 4226 +++++++++++++++++++++++++ 1 file changed, 4226 insertions(+) create mode 100644 app/assets/stylesheets/foundation.css diff --git a/app/assets/stylesheets/foundation.css b/app/assets/stylesheets/foundation.css new file mode 100644 index 000000000..c59eaf55b --- /dev/null +++ b/app/assets/stylesheets/foundation.css @@ -0,0 +1,4226 @@ +@charset "UTF-8"; +/** + * Foundation for Sites by ZURB + * Version 6.2.4 + * foundation.zurb.com + * Licensed under MIT Open Source + */ +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS and IE text size adjust after device orientation change, + * without disabling user zoom. + */ +html { + font-family: sans-serif; + /* 1 */ + -ms-text-size-adjust: 100%; + /* 2 */ + -webkit-text-size-adjust: 100%; + /* 2 */ } + +/** + * Remove default margin. + */ +body { + margin: 0; } + +/* HTML5 display definitions + ========================================================================== */ +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; } + +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ +audio, +canvas, +progress, +video { + display: inline-block; + /* 1 */ + vertical-align: baseline; + /* 2 */ } + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ +audio:not([controls]) { + display: none; + height: 0; } + +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. + */ +[hidden], +template { + display: none; } + +/* Links + ========================================================================== */ +/** + * Remove the gray background color from active links in IE 10. + */ +a { + background-color: transparent; } + +/** + * Improve readability of focused elements when they are also in an + * active/hover state. + */ +a:active, +a:hover { + outline: 0; } + +/* Text-level semantics + ========================================================================== */ +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ +abbr[title] { + border-bottom: 1px dotted; } + +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ +b, +strong { + font-weight: bold; } + +/** + * Address styling not present in Safari and Chrome. + */ +dfn { + font-style: italic; } + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; } + +/** + * Address styling not present in IE 8/9. + */ +mark { + background: #ff0; + color: #000; } + +/** + * Address inconsistent and variable font size in all browsers. + */ +small { + font-size: 80%; } + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; } + +sup { + top: -0.5em; } + +sub { + bottom: -0.25em; } + +/* Embedded content + ========================================================================== */ +/** + * Remove border when inside `a` element in IE 8/9/10. + */ +img { + border: 0; } + +/** + * Correct overflow not hidden in IE 9/10/11. + */ +svg:not(:root) { + overflow: hidden; } + +/* Grouping content + ========================================================================== */ +/** + * Address margin not present in IE 8/9 and Safari. + */ +figure { + margin: 1em 40px; } + +/** + * Address differences between Firefox and other browsers. + */ +hr { + box-sizing: content-box; + height: 0; } + +/** + * Contain overflow in all browsers. + */ +pre { + overflow: auto; } + +/** + * Address odd `em`-unit font size rendering in all browsers. + */ +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; } + +/* Forms + ========================================================================== */ +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ +button, +input, +optgroup, +select, +textarea { + color: inherit; + /* 1 */ + font: inherit; + /* 2 */ + margin: 0; + /* 3 */ } + +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ +button { + overflow: visible; } + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ +button, +select { + text-transform: none; } + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + /* 2 */ + cursor: pointer; + /* 3 */ } + +/** + * Re-set default cursor for disabled elements. + */ +button[disabled], +html input[disabled] { + cursor: not-allowed; } + +/** + * Remove inner padding and border in Firefox 4+. + */ +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; } + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ +input { + line-height: normal; } + +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ } + +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; } + +/** + * 1. Address `appearance` set to `searchfield` in Safari and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. + */ +input[type="search"] { + -webkit-appearance: textfield; + /* 1 */ + box-sizing: content-box; + /* 2 */ } + +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +/** + * Define consistent border, margin, and padding. + * [NOTE] We don't enable this ruleset in Foundation, because we want the
    element to have plain styling. + */ +/* fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; + } */ +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ +legend { + border: 0; + /* 1 */ + padding: 0; + /* 2 */ } + +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ +textarea { + overflow: auto; } + +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ +optgroup { + font-weight: bold; } + +/* Tables + ========================================================================== */ +/** + * Remove most spacing between table cells. + */ +table { + border-collapse: collapse; + border-spacing: 0; } + +td, +th { + padding: 0; } + +.foundation-mq { + font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; } + +html { + font-size: 100%; + box-sizing: border-box; } + +*, +*::before, +*::after { + box-sizing: inherit; } + +body { + padding: 0; + margin: 0; + font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; + font-weight: normal; + line-height: 1.5; + color: #0a0a0a; + background: #fefefe; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } + +img { + max-width: 100%; + height: auto; + -ms-interpolation-mode: bicubic; + display: inline-block; + vertical-align: middle; } + +textarea { + height: auto; + min-height: 50px; + border-radius: 0; } + +select { + width: 100%; + border-radius: 0; } + +#map_canvas img, +#map_canvas embed, +#map_canvas object, +.map_canvas img, +.map_canvas embed, +.map_canvas object, +.mqa-display img, +.mqa-display embed, +.mqa-display object { + max-width: none !important; } + +button { + -webkit-appearance: none; + -moz-appearance: none; + background: transparent; + padding: 0; + border: 0; + border-radius: 0; + line-height: 1; } + [data-whatinput='mouse'] button { + outline: 0; } + +.is-visible { + display: block !important; } + +.is-hidden { + display: none !important; } + +.row { + max-width: 75rem; + margin-left: auto; + margin-right: auto; } + .row::before, .row::after { + content: ' '; + display: table; } + .row::after { + clear: both; } + .row.collapse > .column, .row.collapse > .columns { + padding-left: 0; + padding-right: 0; } + .row .row { + margin-left: -0.625rem; + margin-right: -0.625rem; } + @media screen and (min-width: 40em) { + .row .row { + margin-left: -0.9375rem; + margin-right: -0.9375rem; } } + .row .row.collapse { + margin-left: 0; + margin-right: 0; } + .row.expanded { + max-width: none; } + .row.expanded .row { + margin-left: auto; + margin-right: auto; } + +.column, .columns { + width: 100%; + float: left; + padding-left: 0.625rem; + padding-right: 0.625rem; } + @media screen and (min-width: 40em) { + .column, .columns { + padding-left: 0.9375rem; + padding-right: 0.9375rem; } } + .column:last-child:not(:first-child), .columns:last-child:not(:first-child) { + float: right; } + .column.end:last-child:last-child, .end.columns:last-child:last-child { + float: left; } + +.column.row.row, .row.row.columns { + float: none; } + +.row .column.row.row, .row .row.row.columns { + padding-left: 0; + padding-right: 0; + margin-left: 0; + margin-right: 0; } + +.small-1 { + width: 8.33333%; } + +.small-push-1 { + position: relative; + left: 8.33333%; } + +.small-pull-1 { + position: relative; + left: -8.33333%; } + +.small-offset-0 { + margin-left: 0%; } + +.small-2 { + width: 16.66667%; } + +.small-push-2 { + position: relative; + left: 16.66667%; } + +.small-pull-2 { + position: relative; + left: -16.66667%; } + +.small-offset-1 { + margin-left: 8.33333%; } + +.small-3 { + width: 25%; } + +.small-push-3 { + position: relative; + left: 25%; } + +.small-pull-3 { + position: relative; + left: -25%; } + +.small-offset-2 { + margin-left: 16.66667%; } + +.small-4 { + width: 33.33333%; } + +.small-push-4 { + position: relative; + left: 33.33333%; } + +.small-pull-4 { + position: relative; + left: -33.33333%; } + +.small-offset-3 { + margin-left: 25%; } + +.small-5 { + width: 41.66667%; } + +.small-push-5 { + position: relative; + left: 41.66667%; } + +.small-pull-5 { + position: relative; + left: -41.66667%; } + +.small-offset-4 { + margin-left: 33.33333%; } + +.small-6 { + width: 50%; } + +.small-push-6 { + position: relative; + left: 50%; } + +.small-pull-6 { + position: relative; + left: -50%; } + +.small-offset-5 { + margin-left: 41.66667%; } + +.small-7 { + width: 58.33333%; } + +.small-push-7 { + position: relative; + left: 58.33333%; } + +.small-pull-7 { + position: relative; + left: -58.33333%; } + +.small-offset-6 { + margin-left: 50%; } + +.small-8 { + width: 66.66667%; } + +.small-push-8 { + position: relative; + left: 66.66667%; } + +.small-pull-8 { + position: relative; + left: -66.66667%; } + +.small-offset-7 { + margin-left: 58.33333%; } + +.small-9 { + width: 75%; } + +.small-push-9 { + position: relative; + left: 75%; } + +.small-pull-9 { + position: relative; + left: -75%; } + +.small-offset-8 { + margin-left: 66.66667%; } + +.small-10 { + width: 83.33333%; } + +.small-push-10 { + position: relative; + left: 83.33333%; } + +.small-pull-10 { + position: relative; + left: -83.33333%; } + +.small-offset-9 { + margin-left: 75%; } + +.small-11 { + width: 91.66667%; } + +.small-push-11 { + position: relative; + left: 91.66667%; } + +.small-pull-11 { + position: relative; + left: -91.66667%; } + +.small-offset-10 { + margin-left: 83.33333%; } + +.small-12 { + width: 100%; } + +.small-offset-11 { + margin-left: 91.66667%; } + +.small-up-1 > .column, .small-up-1 > .columns { + width: 100%; + float: left; } + .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) { + clear: both; } + .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child { + float: left; } + +.small-up-2 > .column, .small-up-2 > .columns { + width: 50%; + float: left; } + .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) { + clear: both; } + .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child { + float: left; } + +.small-up-3 > .column, .small-up-3 > .columns { + width: 33.33333%; + float: left; } + .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) { + clear: both; } + .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child { + float: left; } + +.small-up-4 > .column, .small-up-4 > .columns { + width: 25%; + float: left; } + .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) { + clear: both; } + .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child { + float: left; } + +.small-up-5 > .column, .small-up-5 > .columns { + width: 20%; + float: left; } + .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) { + clear: both; } + .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child { + float: left; } + +.small-up-6 > .column, .small-up-6 > .columns { + width: 16.66667%; + float: left; } + .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) { + clear: both; } + .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child { + float: left; } + +.small-up-7 > .column, .small-up-7 > .columns { + width: 14.28571%; + float: left; } + .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) { + clear: both; } + .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child { + float: left; } + +.small-up-8 > .column, .small-up-8 > .columns { + width: 12.5%; + float: left; } + .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) { + clear: none; } + .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) { + clear: both; } + .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child { + float: left; } + +.small-collapse > .column, .small-collapse > .columns { + padding-left: 0; + padding-right: 0; } + +.small-collapse .row { + margin-left: 0; + margin-right: 0; } + +.expanded.row .small-collapse.row { + margin-left: 0; + margin-right: 0; } + +.small-uncollapse > .column, .small-uncollapse > .columns { + padding-left: 0.625rem; + padding-right: 0.625rem; } + +.small-centered { + margin-left: auto; + margin-right: auto; } + .small-centered, .small-centered:last-child:not(:first-child) { + float: none; + clear: both; } + +.small-uncentered, +.small-push-0, +.small-pull-0 { + position: static; + margin-left: 0; + margin-right: 0; + float: left; } + +@media screen and (min-width: 40em) { + .medium-1 { + width: 8.33333%; } + .medium-push-1 { + position: relative; + left: 8.33333%; } + .medium-pull-1 { + position: relative; + left: -8.33333%; } + .medium-offset-0 { + margin-left: 0%; } + .medium-2 { + width: 16.66667%; } + .medium-push-2 { + position: relative; + left: 16.66667%; } + .medium-pull-2 { + position: relative; + left: -16.66667%; } + .medium-offset-1 { + margin-left: 8.33333%; } + .medium-3 { + width: 25%; } + .medium-push-3 { + position: relative; + left: 25%; } + .medium-pull-3 { + position: relative; + left: -25%; } + .medium-offset-2 { + margin-left: 16.66667%; } + .medium-4 { + width: 33.33333%; } + .medium-push-4 { + position: relative; + left: 33.33333%; } + .medium-pull-4 { + position: relative; + left: -33.33333%; } + .medium-offset-3 { + margin-left: 25%; } + .medium-5 { + width: 41.66667%; } + .medium-push-5 { + position: relative; + left: 41.66667%; } + .medium-pull-5 { + position: relative; + left: -41.66667%; } + .medium-offset-4 { + margin-left: 33.33333%; } + .medium-6 { + width: 50%; } + .medium-push-6 { + position: relative; + left: 50%; } + .medium-pull-6 { + position: relative; + left: -50%; } + .medium-offset-5 { + margin-left: 41.66667%; } + .medium-7 { + width: 58.33333%; } + .medium-push-7 { + position: relative; + left: 58.33333%; } + .medium-pull-7 { + position: relative; + left: -58.33333%; } + .medium-offset-6 { + margin-left: 50%; } + .medium-8 { + width: 66.66667%; } + .medium-push-8 { + position: relative; + left: 66.66667%; } + .medium-pull-8 { + position: relative; + left: -66.66667%; } + .medium-offset-7 { + margin-left: 58.33333%; } + .medium-9 { + width: 75%; } + .medium-push-9 { + position: relative; + left: 75%; } + .medium-pull-9 { + position: relative; + left: -75%; } + .medium-offset-8 { + margin-left: 66.66667%; } + .medium-10 { + width: 83.33333%; } + .medium-push-10 { + position: relative; + left: 83.33333%; } + .medium-pull-10 { + position: relative; + left: -83.33333%; } + .medium-offset-9 { + margin-left: 75%; } + .medium-11 { + width: 91.66667%; } + .medium-push-11 { + position: relative; + left: 91.66667%; } + .medium-pull-11 { + position: relative; + left: -91.66667%; } + .medium-offset-10 { + margin-left: 83.33333%; } + .medium-12 { + width: 100%; } + .medium-offset-11 { + margin-left: 91.66667%; } + .medium-up-1 > .column, .medium-up-1 > .columns { + width: 100%; + float: left; } + .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) { + clear: both; } + .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child { + float: left; } + .medium-up-2 > .column, .medium-up-2 > .columns { + width: 50%; + float: left; } + .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) { + clear: both; } + .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child { + float: left; } + .medium-up-3 > .column, .medium-up-3 > .columns { + width: 33.33333%; + float: left; } + .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) { + clear: both; } + .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child { + float: left; } + .medium-up-4 > .column, .medium-up-4 > .columns { + width: 25%; + float: left; } + .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) { + clear: both; } + .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child { + float: left; } + .medium-up-5 > .column, .medium-up-5 > .columns { + width: 20%; + float: left; } + .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) { + clear: both; } + .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child { + float: left; } + .medium-up-6 > .column, .medium-up-6 > .columns { + width: 16.66667%; + float: left; } + .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) { + clear: both; } + .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child { + float: left; } + .medium-up-7 > .column, .medium-up-7 > .columns { + width: 14.28571%; + float: left; } + .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) { + clear: both; } + .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child { + float: left; } + .medium-up-8 > .column, .medium-up-8 > .columns { + width: 12.5%; + float: left; } + .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) { + clear: none; } + .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) { + clear: both; } + .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child { + float: left; } + .medium-collapse > .column, .medium-collapse > .columns { + padding-left: 0; + padding-right: 0; } + .medium-collapse .row { + margin-left: 0; + margin-right: 0; } + .expanded.row .medium-collapse.row { + margin-left: 0; + margin-right: 0; } + .medium-uncollapse > .column, .medium-uncollapse > .columns { + padding-left: 0.9375rem; + padding-right: 0.9375rem; } + .medium-centered { + margin-left: auto; + margin-right: auto; } + .medium-centered, .medium-centered:last-child:not(:first-child) { + float: none; + clear: both; } + .medium-uncentered, + .medium-push-0, + .medium-pull-0 { + position: static; + margin-left: 0; + margin-right: 0; + float: left; } } + +@media screen and (min-width: 64em) { + .large-1 { + width: 8.33333%; } + .large-push-1 { + position: relative; + left: 8.33333%; } + .large-pull-1 { + position: relative; + left: -8.33333%; } + .large-offset-0 { + margin-left: 0%; } + .large-2 { + width: 16.66667%; } + .large-push-2 { + position: relative; + left: 16.66667%; } + .large-pull-2 { + position: relative; + left: -16.66667%; } + .large-offset-1 { + margin-left: 8.33333%; } + .large-3 { + width: 25%; } + .large-push-3 { + position: relative; + left: 25%; } + .large-pull-3 { + position: relative; + left: -25%; } + .large-offset-2 { + margin-left: 16.66667%; } + .large-4 { + width: 33.33333%; } + .large-push-4 { + position: relative; + left: 33.33333%; } + .large-pull-4 { + position: relative; + left: -33.33333%; } + .large-offset-3 { + margin-left: 25%; } + .large-5 { + width: 41.66667%; } + .large-push-5 { + position: relative; + left: 41.66667%; } + .large-pull-5 { + position: relative; + left: -41.66667%; } + .large-offset-4 { + margin-left: 33.33333%; } + .large-6 { + width: 50%; } + .large-push-6 { + position: relative; + left: 50%; } + .large-pull-6 { + position: relative; + left: -50%; } + .large-offset-5 { + margin-left: 41.66667%; } + .large-7 { + width: 58.33333%; } + .large-push-7 { + position: relative; + left: 58.33333%; } + .large-pull-7 { + position: relative; + left: -58.33333%; } + .large-offset-6 { + margin-left: 50%; } + .large-8 { + width: 66.66667%; } + .large-push-8 { + position: relative; + left: 66.66667%; } + .large-pull-8 { + position: relative; + left: -66.66667%; } + .large-offset-7 { + margin-left: 58.33333%; } + .large-9 { + width: 75%; } + .large-push-9 { + position: relative; + left: 75%; } + .large-pull-9 { + position: relative; + left: -75%; } + .large-offset-8 { + margin-left: 66.66667%; } + .large-10 { + width: 83.33333%; } + .large-push-10 { + position: relative; + left: 83.33333%; } + .large-pull-10 { + position: relative; + left: -83.33333%; } + .large-offset-9 { + margin-left: 75%; } + .large-11 { + width: 91.66667%; } + .large-push-11 { + position: relative; + left: 91.66667%; } + .large-pull-11 { + position: relative; + left: -91.66667%; } + .large-offset-10 { + margin-left: 83.33333%; } + .large-12 { + width: 100%; } + .large-offset-11 { + margin-left: 91.66667%; } + .large-up-1 > .column, .large-up-1 > .columns { + width: 100%; + float: left; } + .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) { + clear: both; } + .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child { + float: left; } + .large-up-2 > .column, .large-up-2 > .columns { + width: 50%; + float: left; } + .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) { + clear: both; } + .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child { + float: left; } + .large-up-3 > .column, .large-up-3 > .columns { + width: 33.33333%; + float: left; } + .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) { + clear: both; } + .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child { + float: left; } + .large-up-4 > .column, .large-up-4 > .columns { + width: 25%; + float: left; } + .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) { + clear: both; } + .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child { + float: left; } + .large-up-5 > .column, .large-up-5 > .columns { + width: 20%; + float: left; } + .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) { + clear: both; } + .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child { + float: left; } + .large-up-6 > .column, .large-up-6 > .columns { + width: 16.66667%; + float: left; } + .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) { + clear: both; } + .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child { + float: left; } + .large-up-7 > .column, .large-up-7 > .columns { + width: 14.28571%; + float: left; } + .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) { + clear: both; } + .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child { + float: left; } + .large-up-8 > .column, .large-up-8 > .columns { + width: 12.5%; + float: left; } + .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) { + clear: none; } + .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) { + clear: both; } + .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child { + float: left; } + .large-collapse > .column, .large-collapse > .columns { + padding-left: 0; + padding-right: 0; } + .large-collapse .row { + margin-left: 0; + margin-right: 0; } + .expanded.row .large-collapse.row { + margin-left: 0; + margin-right: 0; } + .large-uncollapse > .column, .large-uncollapse > .columns { + padding-left: 0.9375rem; + padding-right: 0.9375rem; } + .large-centered { + margin-left: auto; + margin-right: auto; } + .large-centered, .large-centered:last-child:not(:first-child) { + float: none; + clear: both; } + .large-uncentered, + .large-push-0, + .large-pull-0 { + position: static; + margin-left: 0; + margin-right: 0; + float: left; } } + +div, +dl, +dt, +dd, +ul, +ol, +li, +h1, +h2, +h3, +h4, +h5, +h6, +pre, +form, +p, +blockquote, +th, +td { + margin: 0; + padding: 0; } + +p { + font-size: inherit; + line-height: 1.6; + margin-bottom: 1rem; + text-rendering: optimizeLegibility; } + +em, +i { + font-style: italic; + line-height: inherit; } + +strong, +b { + font-weight: bold; + line-height: inherit; } + +small { + font-size: 80%; + line-height: inherit; } + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; + font-weight: normal; + font-style: normal; + color: inherit; + text-rendering: optimizeLegibility; + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.4; } + h1 small, + h2 small, + h3 small, + h4 small, + h5 small, + h6 small { + color: #cacaca; + line-height: 0; } + +h1 { + font-size: 1.5rem; } + +h2 { + font-size: 1.25rem; } + +h3 { + font-size: 1.1875rem; } + +h4 { + font-size: 1.125rem; } + +h5 { + font-size: 1.0625rem; } + +h6 { + font-size: 1rem; } + +@media screen and (min-width: 40em) { + h1 { + font-size: 3rem; } + h2 { + font-size: 2.5rem; } + h3 { + font-size: 1.9375rem; } + h4 { + font-size: 1.5625rem; } + h5 { + font-size: 1.25rem; } + h6 { + font-size: 1rem; } } + +a { + color: #2199e8; + text-decoration: none; + line-height: inherit; + cursor: pointer; } + a:hover, a:focus { + color: #1585cf; } + a img { + border: 0; } + +hr { + max-width: 75rem; + height: 0; + border-right: 0; + border-top: 0; + border-bottom: 1px solid #cacaca; + border-left: 0; + margin: 1.25rem auto; + clear: both; } + +ul, +ol, +dl { + line-height: 1.6; + margin-bottom: 1rem; + list-style-position: outside; } + +li { + font-size: inherit; } + +ul { + list-style-type: disc; + margin-left: 1.25rem; } + +ol { + margin-left: 1.25rem; } + +ul ul, ol ul, ul ol, ol ol { + margin-left: 1.25rem; + margin-bottom: 0; } + +dl { + margin-bottom: 1rem; } + dl dt { + margin-bottom: 0.3rem; + font-weight: bold; } + +blockquote { + margin: 0 0 1rem; + padding: 0.5625rem 1.25rem 0 1.1875rem; + border-left: 1px solid #cacaca; } + blockquote, blockquote p { + line-height: 1.6; + color: #8a8a8a; } + +cite { + display: block; + font-size: 0.8125rem; + color: #8a8a8a; } + cite:before { + content: '\2014 \0020'; } + +abbr { + color: #0a0a0a; + cursor: help; + border-bottom: 1px dotted #0a0a0a; } + +code { + font-family: Consolas, "Liberation Mono", Courier, monospace; + font-weight: normal; + color: #0a0a0a; + background-color: #e6e6e6; + border: 1px solid #cacaca; + padding: 0.125rem 0.3125rem 0.0625rem; } + +kbd { + padding: 0.125rem 0.25rem 0; + margin: 0; + background-color: #e6e6e6; + color: #0a0a0a; + font-family: Consolas, "Liberation Mono", Courier, monospace; } + +.subheader { + margin-top: 0.2rem; + margin-bottom: 0.5rem; + font-weight: normal; + line-height: 1.4; + color: #8a8a8a; } + +.lead { + font-size: 125%; + line-height: 1.6; } + +.stat { + font-size: 2.5rem; + line-height: 1; } + p + .stat { + margin-top: -1rem; } + +.no-bullet { + margin-left: 0; + list-style: none; } + +.text-left { + text-align: left; } + +.text-right { + text-align: right; } + +.text-center { + text-align: center; } + +.text-justify { + text-align: justify; } + +@media screen and (min-width: 40em) { + .medium-text-left { + text-align: left; } + .medium-text-right { + text-align: right; } + .medium-text-center { + text-align: center; } + .medium-text-justify { + text-align: justify; } } + +@media screen and (min-width: 64em) { + .large-text-left { + text-align: left; } + .large-text-right { + text-align: right; } + .large-text-center { + text-align: center; } + .large-text-justify { + text-align: justify; } } + +.show-for-print { + display: none !important; } + +@media print { + * { + background: transparent !important; + color: black !important; + box-shadow: none !important; + text-shadow: none !important; } + .show-for-print { + display: block !important; } + .hide-for-print { + display: none !important; } + table.show-for-print { + display: table !important; } + thead.show-for-print { + display: table-header-group !important; } + tbody.show-for-print { + display: table-row-group !important; } + tr.show-for-print { + display: table-row !important; } + td.show-for-print { + display: table-cell !important; } + th.show-for-print { + display: table-cell !important; } + a, + a:visited { + text-decoration: underline; } + a[href]:after { + content: " (" attr(href) ")"; } + .ir a:after, + a[href^='javascript:']:after, + a[href^='#']:after { + content: ''; } + abbr[title]:after { + content: " (" attr(title) ")"; } + pre, + blockquote { + border: 1px solid #8a8a8a; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + img { + max-width: 100% !important; } + @page { + margin: 0.5cm; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } } + +.button { + display: inline-block; + text-align: center; + line-height: 1; + cursor: pointer; + -webkit-appearance: none; + transition: background-color 0.25s ease-out, color 0.25s ease-out; + vertical-align: middle; + border: 1px solid transparent; + border-radius: 0; + padding: 0.85em 1em; + margin: 0 0 1rem 0; + font-size: 0.9rem; + background-color: #2199e8; + color: #fefefe; } + [data-whatinput='mouse'] .button { + outline: 0; } + .button:hover, .button:focus { + background-color: #1583cc; + color: #fefefe; } + .button.tiny { + font-size: 0.6rem; } + .button.small { + font-size: 0.75rem; } + .button.large { + font-size: 1.25rem; } + .button.expanded { + display: block; + width: 100%; + margin-left: 0; + margin-right: 0; } + .button.primary { + background-color: #2199e8; + color: #fefefe; } + .button.primary:hover, .button.primary:focus { + background-color: #147cc0; + color: #fefefe; } + .button.secondary { + background-color: #777; + color: #fefefe; } + .button.secondary:hover, .button.secondary:focus { + background-color: #5f5f5f; + color: #fefefe; } + .button.success { + background-color: #3adb76; + color: #fefefe; } + .button.success:hover, .button.success:focus { + background-color: #22bb5b; + color: #fefefe; } + .button.warning { + background-color: #ffae00; + color: #fefefe; } + .button.warning:hover, .button.warning:focus { + background-color: #cc8b00; + color: #fefefe; } + .button.alert { + background-color: #ec5840; + color: #fefefe; } + .button.alert:hover, .button.alert:focus { + background-color: #da3116; + color: #fefefe; } + .button.hollow { + border: 1px solid #2199e8; + color: #2199e8; } + .button.hollow, .button.hollow:hover, .button.hollow:focus { + background-color: transparent; } + .button.hollow:hover, .button.hollow:focus { + border-color: #0c4d78; + color: #0c4d78; } + .button.hollow.primary { + border: 1px solid #2199e8; + color: #2199e8; } + .button.hollow.primary:hover, .button.hollow.primary:focus { + border-color: #0c4d78; + color: #0c4d78; } + .button.hollow.secondary { + border: 1px solid #777; + color: #777; } + .button.hollow.secondary:hover, .button.hollow.secondary:focus { + border-color: #3c3c3c; + color: #3c3c3c; } + .button.hollow.success { + border: 1px solid #3adb76; + color: #3adb76; } + .button.hollow.success:hover, .button.hollow.success:focus { + border-color: #157539; + color: #157539; } + .button.hollow.warning { + border: 1px solid #ffae00; + color: #ffae00; } + .button.hollow.warning:hover, .button.hollow.warning:focus { + border-color: #805700; + color: #805700; } + .button.hollow.alert { + border: 1px solid #ec5840; + color: #ec5840; } + .button.hollow.alert:hover, .button.hollow.alert:focus { + border-color: #881f0e; + color: #881f0e; } + .button.disabled, .button[disabled] { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { + background-color: #2199e8; + color: #fefefe; } + .button.disabled.primary, .button[disabled].primary { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary:hover, .button[disabled].primary:focus { + background-color: #2199e8; + color: #fefefe; } + .button.disabled.secondary, .button[disabled].secondary { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { + background-color: #777; + color: #fefefe; } + .button.disabled.success, .button[disabled].success { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { + background-color: #3adb76; + color: #fefefe; } + .button.disabled.warning, .button[disabled].warning { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus { + background-color: #ffae00; + color: #fefefe; } + .button.disabled.alert, .button[disabled].alert { + opacity: 0.25; + cursor: not-allowed; } + .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { + background-color: #ec5840; + color: #fefefe; } + .button.dropdown::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 0.4em; + border-color: #fefefe transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + position: relative; + top: 0.4em; + float: right; + margin-left: 1em; + display: inline-block; } + .button.arrow-only::after { + margin-left: 0; + float: none; + top: -0.1em; } + +[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], +textarea { + display: block; + box-sizing: border-box; + width: 100%; + height: 2.4375rem; + padding: 0.5rem; + border: 1px solid #cacaca; + margin: 0 0 1rem; + font-family: inherit; + font-size: 1rem; + color: #0a0a0a; + background-color: #fefefe; + box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1); + border-radius: 0; + transition: box-shadow 0.5s, border-color 0.25s ease-in-out; + -webkit-appearance: none; + -moz-appearance: none; } + [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, + textarea:focus { + border: 1px solid #8a8a8a; + background-color: #fefefe; + outline: none; + box-shadow: 0 0 5px #cacaca; + transition: box-shadow 0.5s, border-color 0.25s ease-in-out; } + +textarea { + max-width: 100%; } + textarea[rows] { + height: auto; } + +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + color: #cacaca; } + +input::-moz-placeholder, +textarea::-moz-placeholder { + color: #cacaca; } + +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + color: #cacaca; } + +input::placeholder, +textarea::placeholder { + color: #cacaca; } + +input:disabled, input[readonly], +textarea:disabled, +textarea[readonly] { + background-color: #e6e6e6; + cursor: not-allowed; } + +[type='submit'], +[type='button'] { + border-radius: 0; + -webkit-appearance: none; + -moz-appearance: none; } + +input[type='search'] { + box-sizing: border-box; } + +[type='file'], +[type='checkbox'], +[type='radio'] { + margin: 0 0 1rem; } + +[type='checkbox'] + label, +[type='radio'] + label { + display: inline-block; + margin-left: 0.5rem; + margin-right: 1rem; + margin-bottom: 0; + vertical-align: baseline; } + [type='checkbox'] + label[for], + [type='radio'] + label[for] { + cursor: pointer; } + +label > [type='checkbox'], +label > [type='radio'] { + margin-right: 0.5rem; } + +[type='file'] { + width: 100%; } + +label { + display: block; + margin: 0; + font-size: 0.875rem; + font-weight: normal; + line-height: 1.8; + color: #0a0a0a; } + label.middle { + margin: 0 0 1rem; + padding: 0.5625rem 0; } + +.help-text { + margin-top: -0.5rem; + font-size: 0.8125rem; + font-style: italic; + color: #0a0a0a; } + +.input-group { + display: table; + width: 100%; + margin-bottom: 1rem; } + .input-group > :first-child { + border-radius: 0 0 0 0; } + .input-group > :last-child > * { + border-radius: 0 0 0 0; } + +.input-group-label, .input-group-field, .input-group-button { + margin: 0; + white-space: nowrap; + display: table-cell; + vertical-align: middle; } + +.input-group-label { + text-align: center; + padding: 0 1rem; + background: #e6e6e6; + color: #0a0a0a; + border: 1px solid #cacaca; + white-space: nowrap; + width: 1%; + height: 100%; } + .input-group-label:first-child { + border-right: 0; } + .input-group-label:last-child { + border-left: 0; } + +.input-group-field { + border-radius: 0; + height: 2.5rem; } + +.input-group-button { + padding-top: 0; + padding-bottom: 0; + text-align: center; + height: 100%; + width: 1%; } + .input-group-button a, + .input-group-button input, + .input-group-button button { + margin: 0; } + +.input-group .input-group-button { + display: table-cell; } + +fieldset { + border: 0; + padding: 0; + margin: 0; } + +legend { + margin-bottom: 0.5rem; + max-width: 100%; } + +.fieldset { + border: 1px solid #cacaca; + padding: 1.25rem; + margin: 1.125rem 0; } + .fieldset legend { + background: #fefefe; + padding: 0 0.1875rem; + margin: 0; + margin-left: -0.1875rem; } + +select { + height: 2.4375rem; + padding: 0.5rem; + border: 1px solid #cacaca; + margin: 0 0 1rem; + font-size: 1rem; + font-family: inherit; + line-height: normal; + color: #0a0a0a; + background-color: #fefefe; + border-radius: 0; + -webkit-appearance: none; + -moz-appearance: none; + background-image: url("data:image/svg+xml;utf8,"); + background-size: 9px 6px; + background-position: right -1rem center; + background-origin: content-box; + background-repeat: no-repeat; + padding-right: 1.5rem; } + @media screen and (min-width: 0\0) { + select { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } } + select:disabled { + background-color: #e6e6e6; + cursor: not-allowed; } + select::-ms-expand { + display: none; } + select[multiple] { + height: auto; + background-image: none; } + +.is-invalid-input:not(:focus) { + background-color: rgba(236, 88, 64, 0.1); + border-color: #ec5840; } + +.is-invalid-label { + color: #ec5840; } + +.form-error { + display: none; + margin-top: -0.5rem; + margin-bottom: 1rem; + font-size: 0.75rem; + font-weight: bold; + color: #ec5840; } + .form-error.is-visible { + display: block; } + +.accordion { + list-style-type: none; + background: #fefefe; + margin-left: 0; } + +.accordion-item:first-child > :first-child { + border-radius: 0 0 0 0; } + +.accordion-item:last-child > :last-child { + border-radius: 0 0 0 0; } + +.accordion-title { + display: block; + padding: 1.25rem 1rem; + line-height: 1; + font-size: 0.75rem; + color: #2199e8; + position: relative; + border: 1px solid #e6e6e6; + border-bottom: 0; } + :last-child:not(.is-active) > .accordion-title { + border-radius: 0 0 0 0; + border-bottom: 1px solid #e6e6e6; } + .accordion-title:hover, .accordion-title:focus { + background-color: #e6e6e6; } + .accordion-title::before { + content: '+'; + position: absolute; + right: 1rem; + top: 50%; + margin-top: -0.5rem; } + .is-active > .accordion-title::before { + content: '–'; } + +.accordion-content { + padding: 1rem; + display: none; + border: 1px solid #e6e6e6; + border-bottom: 0; + background-color: #fefefe; + color: #0a0a0a; } + :last-child > .accordion-content:last-child { + border-bottom: 1px solid #e6e6e6; } + +.is-accordion-submenu-parent > a { + position: relative; } + .is-accordion-submenu-parent > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 6px; + border-color: #2199e8 transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + position: absolute; + top: 50%; + margin-top: -4px; + right: 1rem; } + +.is-accordion-submenu-parent[aria-expanded='true'] > a::after { + -webkit-transform-origin: 50% 50%; + -ms-transform-origin: 50% 50%; + transform-origin: 50% 50%; + -webkit-transform: scaleY(-1); + -ms-transform: scaleY(-1); + transform: scaleY(-1); } + +.badge { + display: inline-block; + padding: 0.3em; + min-width: 2.1em; + font-size: 0.6rem; + text-align: center; + border-radius: 50%; + background: #2199e8; + color: #fefefe; } + .badge.secondary { + background: #777; + color: #fefefe; } + .badge.success { + background: #3adb76; + color: #fefefe; } + .badge.warning { + background: #ffae00; + color: #fefefe; } + .badge.alert { + background: #ec5840; + color: #fefefe; } + +.breadcrumbs { + list-style: none; + margin: 0 0 1rem 0; } + .breadcrumbs::before, .breadcrumbs::after { + content: ' '; + display: table; } + .breadcrumbs::after { + clear: both; } + .breadcrumbs li { + float: left; + color: #0a0a0a; + font-size: 0.6875rem; + cursor: default; + text-transform: uppercase; } + .breadcrumbs li:not(:last-child)::after { + color: #cacaca; + content: "/"; + margin: 0 0.75rem; + position: relative; + top: 1px; + opacity: 1; } + .breadcrumbs a { + color: #2199e8; } + .breadcrumbs a:hover { + text-decoration: underline; } + .breadcrumbs .disabled { + color: #cacaca; + cursor: not-allowed; } + +.button-group { + margin-bottom: 1rem; + font-size: 0; } + .button-group::before, .button-group::after { + content: ' '; + display: table; } + .button-group::after { + clear: both; } + .button-group .button { + margin: 0; + margin-right: 1px; + margin-bottom: 1px; + font-size: 0.9rem; } + .button-group .button:last-child { + margin-right: 0; } + .button-group.tiny .button { + font-size: 0.6rem; } + .button-group.small .button { + font-size: 0.75rem; } + .button-group.large .button { + font-size: 1.25rem; } + .button-group.expanded { + margin-right: -1px; } + .button-group.expanded::before, .button-group.expanded::after { + display: none; } + .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button { + display: inline-block; + width: calc(50% - 1px); + margin-right: 1px; } + .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child { + margin-right: -6px; } + .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button { + display: inline-block; + width: calc(33.33333% - 1px); + margin-right: 1px; } + .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child { + margin-right: -6px; } + .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button { + display: inline-block; + width: calc(25% - 1px); + margin-right: 1px; } + .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child { + margin-right: -6px; } + .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button { + display: inline-block; + width: calc(20% - 1px); + margin-right: 1px; } + .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child { + margin-right: -6px; } + .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button { + display: inline-block; + width: calc(16.66667% - 1px); + margin-right: 1px; } + .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child { + margin-right: -6px; } + .button-group.primary .button { + background-color: #2199e8; + color: #fefefe; } + .button-group.primary .button:hover, .button-group.primary .button:focus { + background-color: #147cc0; + color: #fefefe; } + .button-group.secondary .button { + background-color: #777; + color: #fefefe; } + .button-group.secondary .button:hover, .button-group.secondary .button:focus { + background-color: #5f5f5f; + color: #fefefe; } + .button-group.success .button { + background-color: #3adb76; + color: #fefefe; } + .button-group.success .button:hover, .button-group.success .button:focus { + background-color: #22bb5b; + color: #fefefe; } + .button-group.warning .button { + background-color: #ffae00; + color: #fefefe; } + .button-group.warning .button:hover, .button-group.warning .button:focus { + background-color: #cc8b00; + color: #fefefe; } + .button-group.alert .button { + background-color: #ec5840; + color: #fefefe; } + .button-group.alert .button:hover, .button-group.alert .button:focus { + background-color: #da3116; + color: #fefefe; } + .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button { + width: 100%; } + .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child { + margin-bottom: 0; } + @media screen and (min-width: 40em) { + .button-group.stacked-for-small .button { + width: auto; + margin-bottom: 0; } } + @media screen and (min-width: 64em) { + .button-group.stacked-for-medium .button { + width: auto; + margin-bottom: 0; } } + @media screen and (max-width: 39.9375em) { + .button-group.stacked-for-small.expanded { + display: block; } + .button-group.stacked-for-small.expanded .button { + display: block; + margin-right: 0; } } + +.callout { + margin: 0 0 1rem 0; + padding: 1rem; + border: 1px solid rgba(10, 10, 10, 0.25); + border-radius: 0; + position: relative; + color: #0a0a0a; + background-color: white; } + .callout > :first-child { + margin-top: 0; } + .callout > :last-child { + margin-bottom: 0; } + .callout.primary { + background-color: #def0fc; } + .callout.secondary { + background-color: #ebebeb; } + .callout.success { + background-color: #e1faea; } + .callout.warning { + background-color: #fff3d9; } + .callout.alert { + background-color: #fce6e2; } + .callout.small { + padding-top: 0.5rem; + padding-right: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 0.5rem; } + .callout.large { + padding-top: 3rem; + padding-right: 3rem; + padding-bottom: 3rem; + padding-left: 3rem; } + +.close-button { + position: absolute; + color: #8a8a8a; + right: 1rem; + top: 0.5rem; + font-size: 2em; + line-height: 1; + cursor: pointer; } + [data-whatinput='mouse'] .close-button { + outline: 0; } + .close-button:hover, .close-button:focus { + color: #0a0a0a; } + +.menu { + margin: 0; + list-style-type: none; } + .menu > li { + display: table-cell; + vertical-align: middle; } + [data-whatinput='mouse'] .menu > li { + outline: 0; } + .menu > li > a { + display: block; + padding: 0.7rem 1rem; + line-height: 1; } + .menu input, + .menu a, + .menu button { + margin-bottom: 0; } + .menu > li > a img, + .menu > li > a i, + .menu > li > a svg { + vertical-align: middle; } + .menu > li > a img + span, + .menu > li > a i + span, + .menu > li > a svg + span { + vertical-align: middle; } + .menu > li > a img, + .menu > li > a i, + .menu > li > a svg { + margin-right: 0.25rem; + display: inline-block; } + .menu > li { + display: table-cell; } + .menu.vertical > li { + display: block; } + @media screen and (min-width: 40em) { + .menu.medium-horizontal > li { + display: table-cell; } + .menu.medium-vertical > li { + display: block; } } + @media screen and (min-width: 64em) { + .menu.large-horizontal > li { + display: table-cell; } + .menu.large-vertical > li { + display: block; } } + .menu.simple li { + line-height: 1; + display: inline-block; + margin-right: 1rem; } + .menu.simple a { + padding: 0; } + .menu.align-right::before, .menu.align-right::after { + content: ' '; + display: table; } + .menu.align-right::after { + clear: both; } + .menu.align-right > li { + float: right; } + .menu.expanded { + width: 100%; + display: table; + table-layout: fixed; } + .menu.expanded > li:first-child:last-child { + width: 100%; } + .menu.icon-top > li > a { + text-align: center; } + .menu.icon-top > li > a img, + .menu.icon-top > li > a i, + .menu.icon-top > li > a svg { + display: block; + margin: 0 auto 0.25rem; } + .menu.nested { + margin-left: 1rem; } + .menu .active > a { + color: #fefefe; + background: #2199e8; } + +.menu-text { + font-weight: bold; + color: inherit; + line-height: 1; + padding-top: 0; + padding-bottom: 0; + padding: 0.7rem 1rem; } + +.menu-centered { + text-align: center; } + .menu-centered > .menu { + display: inline-block; } + +.no-js [data-responsive-menu] ul { + display: none; } + +.menu-icon { + position: relative; + display: inline-block; + vertical-align: middle; + cursor: pointer; + width: 20px; + height: 16px; } + .menu-icon::after { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 2px; + background: #fefefe; + top: 0; + left: 0; + box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; } + .menu-icon:hover::after { + background: #cacaca; + box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; } + +.menu-icon.dark { + position: relative; + display: inline-block; + vertical-align: middle; + cursor: pointer; + width: 20px; + height: 16px; } + .menu-icon.dark::after { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 2px; + background: #0a0a0a; + top: 0; + left: 0; + box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; } + .menu-icon.dark:hover::after { + background: #8a8a8a; + box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; } + +.is-drilldown { + position: relative; + overflow: hidden; } + .is-drilldown li { + display: block !important; } + +.is-drilldown-submenu { + position: absolute; + top: 0; + left: 100%; + z-index: -1; + width: 100%; + background: #fefefe; + transition: -webkit-transform 0.15s linear; + transition: transform 0.15s linear; } + .is-drilldown-submenu.is-active { + z-index: 1; + display: block; + -webkit-transform: translateX(-100%); + -ms-transform: translateX(-100%); + transform: translateX(-100%); } + .is-drilldown-submenu.is-closing { + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + transform: translateX(100%); } + +.is-drilldown-submenu-parent > a { + position: relative; } + .is-drilldown-submenu-parent > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 6px; + border-color: transparent transparent transparent #2199e8; + border-left-style: solid; + border-right-width: 0; + position: absolute; + top: 50%; + margin-top: -6px; + right: 1rem; } + +.js-drilldown-back > a::before { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 6px; + border-color: transparent #2199e8 transparent transparent; + border-right-style: solid; + border-left-width: 0; + border-left-width: 0; + display: inline-block; + vertical-align: middle; + margin-right: 0.75rem; } + +.dropdown-pane { + background-color: #fefefe; + border: 1px solid #cacaca; + border-radius: 0; + display: block; + font-size: 1rem; + padding: 1rem; + position: absolute; + visibility: hidden; + width: 300px; + z-index: 10; } + .dropdown-pane.is-open { + visibility: visible; } + +.dropdown-pane.tiny { + width: 100px; } + +.dropdown-pane.small { + width: 200px; } + +.dropdown-pane.large { + width: 400px; } + +.dropdown.menu > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 0; + top: 100%; } + +.dropdown.menu > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 0; + top: 100%; } + +.dropdown.menu > li.is-dropdown-submenu-parent > a { + padding-right: 1.5rem; + position: relative; } + +.dropdown.menu > li.is-dropdown-submenu-parent > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: #2199e8 transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + right: 5px; + margin-top: -2px; } + +[data-whatinput='mouse'] .dropdown.menu a { + outline: 0; } + +.no-js .dropdown.menu ul { + display: none; } + +.dropdown.menu.vertical > li .is-dropdown-submenu { + top: 0; } + +.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 100%; } + +.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 100%; } + +.dropdown.menu.vertical > li > a::after { + right: 14px; + margin-top: -3px; } + +.dropdown.menu.vertical > li.opens-left > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent #2199e8 transparent transparent; + border-right-style: solid; + border-left-width: 0; } + +.dropdown.menu.vertical > li.opens-right > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent transparent transparent #2199e8; + border-left-style: solid; + border-right-width: 0; } + +@media screen and (min-width: 40em) { + .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 0; + top: 100%; } + .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 0; + top: 100%; } + .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a { + padding-right: 1.5rem; + position: relative; } + .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: #2199e8 transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + right: 5px; + margin-top: -2px; } + .dropdown.menu.medium-vertical > li .is-dropdown-submenu { + top: 0; } + .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 100%; } + .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 100%; } + .dropdown.menu.medium-vertical > li > a::after { + right: 14px; + margin-top: -3px; } + .dropdown.menu.medium-vertical > li.opens-left > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent #2199e8 transparent transparent; + border-right-style: solid; + border-left-width: 0; } + .dropdown.menu.medium-vertical > li.opens-right > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent transparent transparent #2199e8; + border-left-style: solid; + border-right-width: 0; } } + +@media screen and (min-width: 64em) { + .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 0; + top: 100%; } + .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 0; + top: 100%; } + .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a { + padding-right: 1.5rem; + position: relative; } + .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: #2199e8 transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + right: 5px; + margin-top: -2px; } + .dropdown.menu.large-vertical > li .is-dropdown-submenu { + top: 0; } + .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu { + left: auto; + right: 100%; } + .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu { + right: auto; + left: 100%; } + .dropdown.menu.large-vertical > li > a::after { + right: 14px; + margin-top: -3px; } + .dropdown.menu.large-vertical > li.opens-left > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent #2199e8 transparent transparent; + border-right-style: solid; + border-left-width: 0; } + .dropdown.menu.large-vertical > li.opens-right > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent transparent transparent #2199e8; + border-left-style: solid; + border-right-width: 0; } } + +.dropdown.menu.align-right .is-dropdown-submenu.first-sub { + top: 100%; + left: auto; + right: 0; } + +.is-dropdown-menu.vertical { + width: 100px; } + .is-dropdown-menu.vertical.align-right { + float: right; } + +.is-dropdown-submenu-parent { + position: relative; } + .is-dropdown-submenu-parent a::after { + position: absolute; + top: 50%; + right: 5px; + margin-top: -2px; } + .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu { + top: 100%; + left: auto; } + .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu { + left: auto; + right: 100%; } + .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu { + right: auto; + left: 100%; } + +.is-dropdown-submenu { + display: none; + position: absolute; + top: 0; + left: 100%; + min-width: 200px; + z-index: 1; + background: #fefefe; + border: 1px solid #cacaca; } + .is-dropdown-submenu .is-dropdown-submenu-parent > a::after { + right: 14px; + margin-top: -3px; } + .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent #2199e8 transparent transparent; + border-right-style: solid; + border-left-width: 0; } + .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent transparent transparent #2199e8; + border-left-style: solid; + border-right-width: 0; } + .is-dropdown-submenu .is-dropdown-submenu { + margin-top: -1px; } + .is-dropdown-submenu > li { + width: 100%; } + .is-dropdown-submenu.js-dropdown-active { + display: block; } + +.flex-video { + position: relative; + height: 0; + padding-bottom: 75%; + margin-bottom: 1rem; + overflow: hidden; } + .flex-video iframe, + .flex-video object, + .flex-video embed, + .flex-video video { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } + .flex-video.widescreen { + padding-bottom: 56.25%; } + .flex-video.vimeo { + padding-top: 0; } + +.label { + display: inline-block; + padding: 0.33333rem 0.5rem; + font-size: 0.8rem; + line-height: 1; + white-space: nowrap; + cursor: default; + border-radius: 0; + background: #2199e8; + color: #fefefe; } + .label.secondary { + background: #777; + color: #fefefe; } + .label.success { + background: #3adb76; + color: #fefefe; } + .label.warning { + background: #ffae00; + color: #fefefe; } + .label.alert { + background: #ec5840; + color: #fefefe; } + +.media-object { + margin-bottom: 1rem; + display: block; } + .media-object img { + max-width: none; } + @media screen and (max-width: 39.9375em) { + .media-object.stack-for-small .media-object-section { + padding: 0; + padding-bottom: 1rem; + display: block; } + .media-object.stack-for-small .media-object-section img { + width: 100%; } } + +.media-object-section { + display: table-cell; + vertical-align: top; } + .media-object-section:first-child { + padding-right: 1rem; } + .media-object-section:last-child:not(:nth-child(2)) { + padding-left: 1rem; } + .media-object-section > :last-child { + margin-bottom: 0; } + .media-object-section.middle { + vertical-align: middle; } + .media-object-section.bottom { + vertical-align: bottom; } + +html, +body { + height: 100%; } + +.off-canvas-wrapper { + width: 100%; + overflow-x: hidden; + position: relative; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-overflow-scrolling: auto; } + +.off-canvas-wrapper-inner { + position: relative; + width: 100%; + min-height: 100%; + transition: -webkit-transform 0.5s ease; + transition: transform 0.5s ease; } + .off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after { + content: ' '; + display: table; } + .off-canvas-wrapper-inner::after { + clear: both; } + +.off-canvas-content, +.off-canvas-content { + min-height: 100%; + background: #fefefe; + transition: -webkit-transform 0.5s ease; + transition: transform 0.5s ease; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + z-index: 1; + padding-bottom: 0.1px; + box-shadow: 0 0 10px rgba(10, 10, 10, 0.5); } + +.js-off-canvas-exit { + display: none; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(254, 254, 254, 0.25); + cursor: pointer; + transition: background 0.5s ease; } + +.off-canvas { + position: absolute; + background: #e6e6e6; + z-index: -1; + max-height: 100%; + overflow-y: auto; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); } + [data-whatinput='mouse'] .off-canvas { + outline: 0; } + .off-canvas.position-left { + left: -250px; + top: 0; + width: 250px; } + .is-open-left { + -webkit-transform: translateX(250px); + -ms-transform: translateX(250px); + transform: translateX(250px); } + .off-canvas.position-right { + right: -250px; + top: 0; + width: 250px; } + .is-open-right { + -webkit-transform: translateX(-250px); + -ms-transform: translateX(-250px); + transform: translateX(-250px); } + +@media screen and (min-width: 40em) { + .position-left.reveal-for-medium { + left: 0; + z-index: auto; + position: fixed; } + .position-left.reveal-for-medium ~ .off-canvas-content { + margin-left: 250px; } + .position-right.reveal-for-medium { + right: 0; + z-index: auto; + position: fixed; } + .position-right.reveal-for-medium ~ .off-canvas-content { + margin-right: 250px; } } + +@media screen and (min-width: 64em) { + .position-left.reveal-for-large { + left: 0; + z-index: auto; + position: fixed; } + .position-left.reveal-for-large ~ .off-canvas-content { + margin-left: 250px; } + .position-right.reveal-for-large { + right: 0; + z-index: auto; + position: fixed; } + .position-right.reveal-for-large ~ .off-canvas-content { + margin-right: 250px; } } + +.orbit { + position: relative; } + +.orbit-container { + position: relative; + margin: 0; + overflow: hidden; + list-style: none; } + +.orbit-slide { + width: 100%; + max-height: 100%; } + .orbit-slide.no-motionui.is-active { + top: 0; + left: 0; } + +.orbit-figure { + margin: 0; } + +.orbit-image { + margin: 0; + width: 100%; + max-width: 100%; } + +.orbit-caption { + position: absolute; + bottom: 0; + width: 100%; + padding: 1rem; + margin-bottom: 0; + color: #fefefe; + background-color: rgba(10, 10, 10, 0.5); } + +.orbit-previous, .orbit-next { + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + z-index: 10; + padding: 1rem; + color: #fefefe; } + [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next { + outline: 0; } + .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus { + background-color: rgba(10, 10, 10, 0.5); } + +.orbit-previous { + left: 0; } + +.orbit-next { + left: auto; + right: 0; } + +.orbit-bullets { + position: relative; + margin-top: 0.8rem; + margin-bottom: 0.8rem; + text-align: center; } + [data-whatinput='mouse'] .orbit-bullets { + outline: 0; } + .orbit-bullets button { + width: 1.2rem; + height: 1.2rem; + margin: 0.1rem; + background-color: #cacaca; + border-radius: 50%; } + .orbit-bullets button:hover { + background-color: #8a8a8a; } + .orbit-bullets button.is-active { + background-color: #8a8a8a; } + +.pagination { + margin-left: 0; + margin-bottom: 1rem; } + .pagination::before, .pagination::after { + content: ' '; + display: table; } + .pagination::after { + clear: both; } + .pagination li { + font-size: 0.875rem; + margin-right: 0.0625rem; + border-radius: 0; + display: none; } + .pagination li:last-child, .pagination li:first-child { + display: inline-block; } + @media screen and (min-width: 40em) { + .pagination li { + display: inline-block; } } + .pagination a, + .pagination button { + color: #0a0a0a; + display: block; + padding: 0.1875rem 0.625rem; + border-radius: 0; } + .pagination a:hover, + .pagination button:hover { + background: #e6e6e6; } + .pagination .current { + padding: 0.1875rem 0.625rem; + background: #2199e8; + color: #fefefe; + cursor: default; } + .pagination .disabled { + padding: 0.1875rem 0.625rem; + color: #cacaca; + cursor: not-allowed; } + .pagination .disabled:hover { + background: transparent; } + .pagination .ellipsis::after { + content: '\2026'; + padding: 0.1875rem 0.625rem; + color: #0a0a0a; } + +.pagination-previous a::before, +.pagination-previous.disabled::before { + content: '\00ab'; + display: inline-block; + margin-right: 0.5rem; } + +.pagination-next a::after, +.pagination-next.disabled::after { + content: '\00bb'; + display: inline-block; + margin-left: 0.5rem; } + +.progress { + background-color: #cacaca; + height: 1rem; + margin-bottom: 1rem; + border-radius: 0; } + .progress.primary .progress-meter { + background-color: #2199e8; } + .progress.secondary .progress-meter { + background-color: #777; } + .progress.success .progress-meter { + background-color: #3adb76; } + .progress.warning .progress-meter { + background-color: #ffae00; } + .progress.alert .progress-meter { + background-color: #ec5840; } + +.progress-meter { + position: relative; + display: block; + width: 0%; + height: 100%; + background-color: #2199e8; } + +.progress-meter-text { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + position: absolute; + margin: 0; + font-size: 0.75rem; + font-weight: bold; + color: #fefefe; + white-space: nowrap; } + +body.is-reveal-open { + overflow: hidden; } + +html.is-reveal-open, +html.is-reveal-open body { + min-height: 100%; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + +.reveal-overlay { + display: none; + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 1005; + background-color: rgba(10, 10, 10, 0.45); + overflow-y: scroll; } + +.reveal { + display: none; + z-index: 1006; + padding: 1rem; + border: 1px solid #cacaca; + background-color: #fefefe; + border-radius: 0; + position: relative; + top: 100px; + margin-left: auto; + margin-right: auto; + overflow-y: auto; } + [data-whatinput='mouse'] .reveal { + outline: 0; } + @media screen and (min-width: 40em) { + .reveal { + min-height: 0; } } + .reveal .column, .reveal .columns, + .reveal .columns { + min-width: 0; } + .reveal > :last-child { + margin-bottom: 0; } + @media screen and (min-width: 40em) { + .reveal { + width: 600px; + max-width: 75rem; } } + @media screen and (min-width: 40em) { + .reveal .reveal { + left: auto; + right: auto; + margin: 0 auto; } } + .reveal.collapse { + padding: 0; } + @media screen and (min-width: 40em) { + .reveal.tiny { + width: 30%; + max-width: 75rem; } } + @media screen and (min-width: 40em) { + .reveal.small { + width: 50%; + max-width: 75rem; } } + @media screen and (min-width: 40em) { + .reveal.large { + width: 90%; + max-width: 75rem; } } + .reveal.full { + top: 0; + left: 0; + width: 100%; + height: 100%; + height: 100vh; + min-height: 100vh; + max-width: none; + margin-left: 0; + border: 0; + border-radius: 0; } + @media screen and (max-width: 39.9375em) { + .reveal { + top: 0; + left: 0; + width: 100%; + height: 100%; + height: 100vh; + min-height: 100vh; + max-width: none; + margin-left: 0; + border: 0; + border-radius: 0; } } + .reveal.without-overlay { + position: fixed; } + +.slider { + position: relative; + height: 0.5rem; + margin-top: 1.25rem; + margin-bottom: 2.25rem; + background-color: #e6e6e6; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -ms-touch-action: none; + touch-action: none; } + +.slider-fill { + position: absolute; + top: 0; + left: 0; + display: inline-block; + max-width: 100%; + height: 0.5rem; + background-color: #cacaca; + transition: all 0.2s ease-in-out; } + .slider-fill.is-dragging { + transition: all 0s linear; } + +.slider-handle { + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + position: absolute; + left: 0; + z-index: 1; + display: inline-block; + width: 1.4rem; + height: 1.4rem; + background-color: #2199e8; + transition: all 0.2s ease-in-out; + -ms-touch-action: manipulation; + touch-action: manipulation; + border-radius: 0; } + [data-whatinput='mouse'] .slider-handle { + outline: 0; } + .slider-handle:hover { + background-color: #1583cc; } + .slider-handle.is-dragging { + transition: all 0s linear; } + +.slider.disabled, +.slider[disabled] { + opacity: 0.25; + cursor: not-allowed; } + +.slider.vertical { + display: inline-block; + width: 0.5rem; + height: 12.5rem; + margin: 0 1.25rem; + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); } + .slider.vertical .slider-fill { + top: 0; + width: 0.5rem; + max-height: 100%; } + .slider.vertical .slider-handle { + position: absolute; + top: 0; + left: 50%; + width: 1.4rem; + height: 1.4rem; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + transform: translateX(-50%); } + +.sticky-container { + position: relative; } + +.sticky { + position: absolute; + z-index: 0; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + +.sticky.is-stuck { + position: fixed; + z-index: 5; } + .sticky.is-stuck.is-at-top { + top: 0; } + .sticky.is-stuck.is-at-bottom { + bottom: 0; } + +.sticky.is-anchored { + position: absolute; + left: auto; + right: auto; } + .sticky.is-anchored.is-at-bottom { + bottom: 0; } + +.switch { + height: 2rem; + margin-bottom: 1rem; + outline: 0; + position: relative; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + color: #fefefe; + font-weight: bold; + font-size: 0.875rem; } + +.switch-input { + opacity: 0; + position: absolute; + margin-bottom: 0; } + +.switch-paddle { + background: #cacaca; + cursor: pointer; + display: block; + position: relative; + width: 4rem; + height: 2rem; + transition: all 0.25s ease-out; + border-radius: 0; + color: inherit; + font-weight: inherit; } + input + .switch-paddle { + margin: 0; } + .switch-paddle::after { + background: #fefefe; + content: ''; + display: block; + position: absolute; + height: 1.5rem; + left: 0.25rem; + top: 0.25rem; + width: 1.5rem; + transition: all 0.25s ease-out; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + border-radius: 0; } + input:checked ~ .switch-paddle { + background: #2199e8; } + input:checked ~ .switch-paddle::after { + left: 2.25rem; } + [data-whatinput='mouse'] input:focus ~ .switch-paddle { + outline: 0; } + +.switch-active, .switch-inactive { + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); } + +.switch-active { + left: 8%; + display: none; } + input:checked + label > .switch-active { + display: block; } + +.switch-inactive { + right: 15%; } + input:checked + label > .switch-inactive { + display: none; } + +.switch.tiny { + height: 1.5rem; } + .switch.tiny .switch-paddle { + width: 3rem; + height: 1.5rem; + font-size: 0.625rem; } + .switch.tiny .switch-paddle::after { + width: 1rem; + height: 1rem; } + .switch.tiny input:checked ~ .switch-paddle::after { + left: 1.75rem; } + +.switch.small { + height: 1.75rem; } + .switch.small .switch-paddle { + width: 3.5rem; + height: 1.75rem; + font-size: 0.75rem; } + .switch.small .switch-paddle::after { + width: 1.25rem; + height: 1.25rem; } + .switch.small input:checked ~ .switch-paddle::after { + left: 2rem; } + +.switch.large { + height: 2.5rem; } + .switch.large .switch-paddle { + width: 5rem; + height: 2.5rem; + font-size: 1rem; } + .switch.large .switch-paddle::after { + width: 2rem; + height: 2rem; } + .switch.large input:checked ~ .switch-paddle::after { + left: 2.75rem; } + +table { + width: 100%; + margin-bottom: 1rem; + border-radius: 0; } + table thead, + table tbody, + table tfoot { + border: 1px solid #f1f1f1; + background-color: #fefefe; } + table caption { + font-weight: bold; + padding: 0.5rem 0.625rem 0.625rem; } + table thead { + background: #f8f8f8; + color: #0a0a0a; } + table tfoot { + background: #f1f1f1; + color: #0a0a0a; } + table thead tr, + table tfoot tr { + background: transparent; } + table thead th, + table thead td, + table tfoot th, + table tfoot td { + padding: 0.5rem 0.625rem 0.625rem; + font-weight: bold; + text-align: left; } + table tbody tr:nth-child(even) { + background-color: #f1f1f1; } + table tbody th, + table tbody td { + padding: 0.5rem 0.625rem 0.625rem; } + +@media screen and (max-width: 63.9375em) { + table.stack thead { + display: none; } + table.stack tfoot { + display: none; } + table.stack tr, + table.stack th, + table.stack td { + display: block; } + table.stack td { + border-top: 0; } } + +table.scroll { + display: block; + width: 100%; + overflow-x: auto; } + +table.hover thead tr:hover { + background-color: #f3f3f3; } + +table.hover tfoot tr:hover { + background-color: #ececec; } + +table.hover tbody tr:hover { + background-color: #f9f9f9; } + +table.hover tbody tr:nth-of-type(even):hover { + background-color: #ececec; } + +.table-scroll { + overflow-x: auto; } + .table-scroll table { + width: auto; } + +.tabs { + margin: 0; + list-style-type: none; + background: #fefefe; + border: 1px solid #e6e6e6; } + .tabs::before, .tabs::after { + content: ' '; + display: table; } + .tabs::after { + clear: both; } + +.tabs.vertical > li { + width: auto; + float: none; + display: block; } + +.tabs.simple > li > a { + padding: 0; } + .tabs.simple > li > a:hover { + background: transparent; } + +.tabs.primary { + background: #2199e8; } + .tabs.primary > li > a { + color: #fefefe; } + .tabs.primary > li > a:hover, .tabs.primary > li > a:focus { + background: #1893e4; } + +.tabs-title { + float: left; } + .tabs-title > a { + display: block; + padding: 1.25rem 1.5rem; + line-height: 1; + font-size: 0.75rem; } + .tabs-title > a:hover { + background: #fefefe; } + .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] { + background: #e6e6e6; } + +.tabs-content { + background: #fefefe; + transition: all 0.5s ease; + border: 1px solid #e6e6e6; + border-top: 0; } + +.tabs-content.vertical { + border: 1px solid #e6e6e6; + border-left: 0; } + +.tabs-panel { + display: none; + padding: 1rem; } + .tabs-panel.is-active { + display: block; } + +.thumbnail { + border: solid 4px #fefefe; + box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2); + display: inline-block; + line-height: 0; + max-width: 100%; + transition: box-shadow 200ms ease-out; + border-radius: 0; + margin-bottom: 1rem; } + .thumbnail:hover, .thumbnail:focus { + box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5); } + +.title-bar { + background: #0a0a0a; + color: #fefefe; + padding: 0.5rem; } + .title-bar::before, .title-bar::after { + content: ' '; + display: table; } + .title-bar::after { + clear: both; } + .title-bar .menu-icon { + margin-left: 0.25rem; + margin-right: 0.25rem; } + +.title-bar-left { + float: left; } + +.title-bar-right { + float: right; + text-align: right; } + +.title-bar-title { + font-weight: bold; + vertical-align: middle; + display: inline-block; } + +.has-tip { + border-bottom: dotted 1px #8a8a8a; + font-weight: bold; + position: relative; + display: inline-block; + cursor: help; } + +.tooltip { + background-color: #0a0a0a; + color: #fefefe; + font-size: 80%; + padding: 0.75rem; + position: absolute; + z-index: 10; + top: calc(100% + 0.6495rem); + max-width: 10rem !important; + border-radius: 0; } + .tooltip::before { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 0.75rem; + border-color: transparent transparent #0a0a0a; + border-bottom-style: solid; + border-top-width: 0; + bottom: 100%; + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + transform: translateX(-50%); } + .tooltip.top::before { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 0.75rem; + border-color: #0a0a0a transparent transparent; + border-top-style: solid; + border-bottom-width: 0; + top: 100%; + bottom: auto; } + .tooltip.left::before { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 0.75rem; + border-color: transparent transparent transparent #0a0a0a; + border-left-style: solid; + border-right-width: 0; + bottom: auto; + left: 100%; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); } + .tooltip.right::before { + content: ''; + display: block; + width: 0; + height: 0; + border: inset 0.75rem; + border-color: transparent #0a0a0a transparent transparent; + border-right-style: solid; + border-left-width: 0; + bottom: auto; + left: auto; + right: 100%; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); } + +.top-bar { + padding: 0.5rem; } + .top-bar::before, .top-bar::after { + content: ' '; + display: table; } + .top-bar::after { + clear: both; } + .top-bar, + .top-bar ul { + background-color: #e6e6e6; } + .top-bar input { + max-width: 200px; + margin-right: 1rem; } + .top-bar .input-group-field { + width: 100%; + margin-right: 0; } + .top-bar input.button { + width: auto; } + .top-bar .top-bar-left, + .top-bar .top-bar-right { + width: 100%; } + @media screen and (min-width: 40em) { + .top-bar .top-bar-left, + .top-bar .top-bar-right { + width: auto; } } + @media screen and (max-width: 63.9375em) { + .top-bar.stacked-for-medium .top-bar-left, + .top-bar.stacked-for-medium .top-bar-right { + width: 100%; } } + @media screen and (max-width: 74.9375em) { + .top-bar.stacked-for-large .top-bar-left, + .top-bar.stacked-for-large .top-bar-right { + width: 100%; } } + +.top-bar-title { + float: left; + margin-right: 1rem; } + +.top-bar-left { + float: left; } + +.top-bar-right { + float: right; } + +.hide { + display: none !important; } + +.invisible { + visibility: hidden; } + +@media screen and (max-width: 39.9375em) { + .hide-for-small-only { + display: none !important; } } + +@media screen and (max-width: 0em), screen and (min-width: 40em) { + .show-for-small-only { + display: none !important; } } + +@media screen and (min-width: 40em) { + .hide-for-medium { + display: none !important; } } + +@media screen and (max-width: 39.9375em) { + .show-for-medium { + display: none !important; } } + +@media screen and (min-width: 40em) and (max-width: 63.9375em) { + .hide-for-medium-only { + display: none !important; } } + +@media screen and (max-width: 39.9375em), screen and (min-width: 64em) { + .show-for-medium-only { + display: none !important; } } + +@media screen and (min-width: 64em) { + .hide-for-large { + display: none !important; } } + +@media screen and (max-width: 63.9375em) { + .show-for-large { + display: none !important; } } + +@media screen and (min-width: 64em) and (max-width: 74.9375em) { + .hide-for-large-only { + display: none !important; } } + +@media screen and (max-width: 63.9375em), screen and (min-width: 75em) { + .show-for-large-only { + display: none !important; } } + +.show-for-sr, +.show-on-focus { + position: absolute !important; + width: 1px; + height: 1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); } + +.show-on-focus:active, .show-on-focus:focus { + position: static !important; + height: auto; + width: auto; + overflow: visible; + clip: auto; } + +.show-for-landscape, +.hide-for-portrait { + display: block !important; } + @media screen and (orientation: landscape) { + .show-for-landscape, + .hide-for-portrait { + display: block !important; } } + @media screen and (orientation: portrait) { + .show-for-landscape, + .hide-for-portrait { + display: none !important; } } + +.hide-for-landscape, +.show-for-portrait { + display: none !important; } + @media screen and (orientation: landscape) { + .hide-for-landscape, + .show-for-portrait { + display: none !important; } } + @media screen and (orientation: portrait) { + .hide-for-landscape, + .show-for-portrait { + display: block !important; } } + +.float-left { + float: left !important; } + +.float-right { + float: right !important; } + +.float-center { + display: block; + margin-left: auto; + margin-right: auto; } + +.clearfix::before, .clearfix::after { + content: ' '; + display: table; } + +.clearfix::after { + clear: both; } + +.slide-in-down.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateY(-100%); + -ms-transform: translateY(-100%); + transform: translateY(-100%); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-in-down.mui-enter.mui-enter-active { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); } + +.slide-in-left.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateX(-100%); + -ms-transform: translateX(-100%); + transform: translateX(-100%); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-in-left.mui-enter.mui-enter-active { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); } + +.slide-in-up.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateY(100%); + -ms-transform: translateY(100%); + transform: translateY(100%); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-in-up.mui-enter.mui-enter-active { + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); } + +.slide-in-right.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + transform: translateX(100%); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-in-right.mui-enter.mui-enter-active { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); } + +.slide-out-down.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-out-down.mui-leave.mui-leave-active { + -webkit-transform: translateY(100%); + -ms-transform: translateY(100%); + transform: translateY(100%); } + +.slide-out-right.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-out-right.mui-leave.mui-leave-active { + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + transform: translateX(100%); } + +.slide-out-up.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-out-up.mui-leave.mui-leave-active { + -webkit-transform: translateY(-100%); + -ms-transform: translateY(-100%); + transform: translateY(-100%); } + +.slide-out-left.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.slide-out-left.mui-leave.mui-leave-active { + -webkit-transform: translateX(-100%); + -ms-transform: translateX(-100%); + transform: translateX(-100%); } + +.fade-in.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + opacity: 0; + transition-property: opacity; } + +.fade-in.mui-enter.mui-enter-active { + opacity: 1; } + +.fade-out.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + opacity: 1; + transition-property: opacity; } + +.fade-out.mui-leave.mui-leave-active { + opacity: 0; } + +.hinge-in-from-top.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateX(-90deg); + transform: perspective(2000px) rotateX(-90deg); + -webkit-transform-origin: top; + -ms-transform-origin: top; + transform-origin: top; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-top.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-in-from-right.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateY(-90deg); + transform: perspective(2000px) rotateY(-90deg); + -webkit-transform-origin: right; + -ms-transform-origin: right; + transform-origin: right; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-right.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-in-from-bottom.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateX(90deg); + transform: perspective(2000px) rotateX(90deg); + -webkit-transform-origin: bottom; + -ms-transform-origin: bottom; + transform-origin: bottom; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-bottom.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-in-from-left.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateY(90deg); + transform: perspective(2000px) rotateY(90deg); + -webkit-transform-origin: left; + -ms-transform-origin: left; + transform-origin: left; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-left.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-in-from-middle-x.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateX(-90deg); + transform: perspective(2000px) rotateX(-90deg); + -webkit-transform-origin: center; + -ms-transform-origin: center; + transform-origin: center; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-middle-x.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-in-from-middle-y.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotateY(-90deg); + transform: perspective(2000px) rotateY(-90deg); + -webkit-transform-origin: center; + -ms-transform-origin: center; + transform-origin: center; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.hinge-in-from-middle-y.mui-enter.mui-enter-active { + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + opacity: 1; } + +.hinge-out-from-top.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: top; + -ms-transform-origin: top; + transform-origin: top; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-top.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateX(-90deg); + transform: perspective(2000px) rotateX(-90deg); + opacity: 0; } + +.hinge-out-from-right.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: right; + -ms-transform-origin: right; + transform-origin: right; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-right.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateY(-90deg); + transform: perspective(2000px) rotateY(-90deg); + opacity: 0; } + +.hinge-out-from-bottom.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: bottom; + -ms-transform-origin: bottom; + transform-origin: bottom; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-bottom.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateX(90deg); + transform: perspective(2000px) rotateX(90deg); + opacity: 0; } + +.hinge-out-from-left.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: left; + -ms-transform-origin: left; + transform-origin: left; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-left.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateY(90deg); + transform: perspective(2000px) rotateY(90deg); + opacity: 0; } + +.hinge-out-from-middle-x.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: center; + -ms-transform-origin: center; + transform-origin: center; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-middle-x.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateX(-90deg); + transform: perspective(2000px) rotateX(-90deg); + opacity: 0; } + +.hinge-out-from-middle-y.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: perspective(2000px) rotate(0deg); + transform: perspective(2000px) rotate(0deg); + -webkit-transform-origin: center; + -ms-transform-origin: center; + transform-origin: center; + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.hinge-out-from-middle-y.mui-leave.mui-leave-active { + -webkit-transform: perspective(2000px) rotateY(-90deg); + transform: perspective(2000px) rotateY(-90deg); + opacity: 0; } + +.scale-in-up.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: scale(0.5); + -ms-transform: scale(0.5); + transform: scale(0.5); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.scale-in-up.mui-enter.mui-enter-active { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + opacity: 1; } + +.scale-in-down.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: scale(1.5); + -ms-transform: scale(1.5); + transform: scale(1.5); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.scale-in-down.mui-enter.mui-enter-active { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + opacity: 1; } + +.scale-out-up.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.scale-out-up.mui-leave.mui-leave-active { + -webkit-transform: scale(1.5); + -ms-transform: scale(1.5); + transform: scale(1.5); + opacity: 0; } + +.scale-out-down.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.scale-out-down.mui-leave.mui-leave-active { + -webkit-transform: scale(0.5); + -ms-transform: scale(0.5); + transform: scale(0.5); + opacity: 0; } + +.spin-in.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: rotate(-0.75turn); + -ms-transform: rotate(-0.75turn); + transform: rotate(-0.75turn); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.spin-in.mui-enter.mui-enter-active { + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + +.spin-out.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.spin-out.mui-leave.mui-leave-active { + -webkit-transform: rotate(0.75turn); + -ms-transform: rotate(0.75turn); + transform: rotate(0.75turn); + opacity: 0; } + +.spin-in-ccw.mui-enter { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: rotate(0.75turn); + -ms-transform: rotate(0.75turn); + transform: rotate(0.75turn); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 0; } + +.spin-in-ccw.mui-enter.mui-enter-active { + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + +.spin-out-ccw.mui-leave { + transition-duration: 500ms; + transition-timing-function: linear; + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + transition-property: -webkit-transform, opacity; + transition-property: transform, opacity; + opacity: 1; } + +.spin-out-ccw.mui-leave.mui-leave-active { + -webkit-transform: rotate(-0.75turn); + -ms-transform: rotate(-0.75turn); + transform: rotate(-0.75turn); + opacity: 0; } + +.slow { + transition-duration: 750ms !important; } + +.fast { + transition-duration: 250ms !important; } + +.linear { + transition-timing-function: linear !important; } + +.ease { + transition-timing-function: ease !important; } + +.ease-in { + transition-timing-function: ease-in !important; } + +.ease-out { + transition-timing-function: ease-out !important; } + +.ease-in-out { + transition-timing-function: ease-in-out !important; } + +.bounce-in { + transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; } + +.bounce-out { + transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; } + +.bounce-in-out { + transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; } + +.short-delay { + transition-delay: 300ms !important; } + +.long-delay { + transition-delay: 700ms !important; } + +.shake { + -webkit-animation-name: shake-7; + animation-name: shake-7; } + +@-webkit-keyframes shake-7 { + 0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% { + -webkit-transform: translateX(7%); + transform: translateX(7%); } + 5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% { + -webkit-transform: translateX(-7%); + transform: translateX(-7%); } } + +@keyframes shake-7 { + 0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% { + -webkit-transform: translateX(7%); + transform: translateX(7%); } + 5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% { + -webkit-transform: translateX(-7%); + transform: translateX(-7%); } } + +.spin-cw { + -webkit-animation-name: spin-cw-1turn; + animation-name: spin-cw-1turn; } + +@-webkit-keyframes spin-cw-1turn { + 0% { + -webkit-transform: rotate(-1turn); + transform: rotate(-1turn); } + 100% { + -webkit-transform: rotate(0); + transform: rotate(0); } } + +@keyframes spin-cw-1turn { + 0% { + -webkit-transform: rotate(-1turn); + transform: rotate(-1turn); } + 100% { + -webkit-transform: rotate(0); + transform: rotate(0); } } + +.spin-ccw { + -webkit-animation-name: spin-cw-1turn; + animation-name: spin-cw-1turn; } + +@keyframes spin-cw-1turn { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); } + 100% { + -webkit-transform: rotate(1turn); + transform: rotate(1turn); } } + +.wiggle { + -webkit-animation-name: wiggle-7deg; + animation-name: wiggle-7deg; } + +@-webkit-keyframes wiggle-7deg { + 40%, 50%, 60% { + -webkit-transform: rotate(7deg); + transform: rotate(7deg); } + 35%, 45%, 55%, 65% { + -webkit-transform: rotate(-7deg); + transform: rotate(-7deg); } + 0%, 30%, 70%, 100% { + -webkit-transform: rotate(0); + transform: rotate(0); } } + +@keyframes wiggle-7deg { + 40%, 50%, 60% { + -webkit-transform: rotate(7deg); + transform: rotate(7deg); } + 35%, 45%, 55%, 65% { + -webkit-transform: rotate(-7deg); + transform: rotate(-7deg); } + 0%, 30%, 70%, 100% { + -webkit-transform: rotate(0); + transform: rotate(0); } } + +.shake, +.spin-cw, +.spin-ccw, +.wiggle { + -webkit-animation-duration: 500ms; + animation-duration: 500ms; } + +.infinite { + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; } + +.slow { + -webkit-animation-duration: 750ms !important; + animation-duration: 750ms !important; } + +.fast { + -webkit-animation-duration: 250ms !important; + animation-duration: 250ms !important; } + +.linear { + -webkit-animation-timing-function: linear !important; + animation-timing-function: linear !important; } + +.ease { + -webkit-animation-timing-function: ease !important; + animation-timing-function: ease !important; } + +.ease-in { + -webkit-animation-timing-function: ease-in !important; + animation-timing-function: ease-in !important; } + +.ease-out { + -webkit-animation-timing-function: ease-out !important; + animation-timing-function: ease-out !important; } + +.ease-in-out { + -webkit-animation-timing-function: ease-in-out !important; + animation-timing-function: ease-in-out !important; } + +.bounce-in { + -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; + animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; } + +.bounce-out { + -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; + animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; } + +.bounce-in-out { + -webkit-animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; + animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; } + +.short-delay { + -webkit-animation-delay: 300ms !important; + animation-delay: 300ms !important; } + +.long-delay { + -webkit-animation-delay: 700ms !important; + animation-delay: 700ms !important; } From 84ab4a806a53176af6e6d5c8d142b4b962a4dfc6 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:39:42 -0700 Subject: [PATCH 065/103] deleted and rebuilt sessions controller --- app/assets/stylesheets/normalize.css | 460 ------------------- app/validators/myvalidator.rb | 8 + app/views/sessions/deactivate.html.erb | 2 - app/views/sessions/destroy.html.erb | 2 + db/development.sqlite3 | Bin 24576 -> 24576 bytes log/development.log | 315 +++++++++++++ test/controllers/sessions_controller_test.rb | 31 +- 7 files changed, 327 insertions(+), 491 deletions(-) delete mode 100644 app/assets/stylesheets/normalize.css create mode 100644 app/validators/myvalidator.rb delete mode 100644 app/views/sessions/deactivate.html.erb create mode 100644 app/views/sessions/destroy.html.erb diff --git a/app/assets/stylesheets/normalize.css b/app/assets/stylesheets/normalize.css deleted file mode 100644 index ad707cffe..000000000 --- a/app/assets/stylesheets/normalize.css +++ /dev/null @@ -1,460 +0,0 @@ -/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */ - -/** - * 1. Change the default font family in all browsers (opinionated). - * 2. Correct the line height in all browsers. - * 3. Prevent adjustments of font size after orientation changes in IE and iOS. - */ - -/* Document - ========================================================================== */ - -html { - font-family: sans-serif; /* 1 */ - line-height: 1.15; /* 2 */ - -ms-text-size-adjust: 100%; /* 3 */ - -webkit-text-size-adjust: 100%; /* 3 */ -} - -/* Sections - ========================================================================== */ - -/** - * Remove the margin in all browsers (opinionated). - */ - -body { - margin: 0; -} - -/** - * Add the correct display in IE 9-. - */ - -article, -aside, -footer, -header, -nav, -section { - display: block; -} - -/** - * Correct the font size and margin on `h1` elements within `section` and - * `article` contexts in Chrome, Firefox, and Safari. - */ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -/* Grouping content - ========================================================================== */ - -/** - * Add the correct display in IE 9-. - * 1. Add the correct display in IE. - */ - -figcaption, -figure, -main { /* 1 */ - display: block; -} - -/** - * Add the correct margin in IE 8. - */ - -figure { - margin: 1em 40px; -} - -/** - * 1. Add the correct box sizing in Firefox. - * 2. Show the overflow in Edge and IE. - */ - -hr { - box-sizing: content-box; /* 1 */ - height: 0; /* 1 */ - overflow: visible; /* 2 */ -} - -/** - * 1. Correct the inheritance and scaling of font size in all browsers. - * 2. Correct the odd `em` font sizing in all browsers. - */ - -pre { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ -} - -/* Text-level semantics - ========================================================================== */ - -/** - * 1. Remove the gray background on active links in IE 10. - * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. - */ - -a { - background-color: transparent; /* 1 */ - -webkit-text-decoration-skip: objects; /* 2 */ -} - -/** - * Remove the outline on focused links when they are also active or hovered - * in all browsers (opinionated). - */ - -a:active, -a:hover { - outline-width: 0; -} - -/** - * 1. Remove the bottom border in Firefox 39-. - * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. - */ - -abbr[title] { - border-bottom: none; /* 1 */ - text-decoration: underline; /* 2 */ - text-decoration: underline dotted; /* 2 */ -} - -/** - * Prevent the duplicate application of `bolder` by the next rule in Safari 6. - */ - -b, -strong { - font-weight: inherit; -} - -/** - * Add the correct font weight in Chrome, Edge, and Safari. - */ - -b, -strong { - font-weight: bolder; -} - -/** - * 1. Correct the inheritance and scaling of font size in all browsers. - * 2. Correct the odd `em` font sizing in all browsers. - */ - -code, -kbd, -samp { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ -} - -/** - * Add the correct font style in Android 4.3-. - */ - -dfn { - font-style: italic; -} - -/** - * Add the correct background and color in IE 9-. - */ - -mark { - background-color: #ff0; - color: #000; -} - -/** - * Add the correct font size in all browsers. - */ - -small { - font-size: 80%; -} - -/** - * Prevent `sub` and `sup` elements from affecting the line height in - * all browsers. - */ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* Embedded content - ========================================================================== */ - -/** - * Add the correct display in IE 9-. - */ - -audio, -video { - display: inline-block; -} - -/** - * Add the correct display in iOS 4-7. - */ - -audio:not([controls]) { - display: none; - height: 0; -} - -/** - * Remove the border on images inside links in IE 10-. - */ - -img { - border-style: none; -} - -/** - * Hide the overflow in IE. - */ - -svg:not(:root) { - overflow: hidden; -} - -/* Forms - ========================================================================== */ - -/** - * 1. Change the font styles in all browsers (opinionated). - * 2. Remove the margin in Firefox and Safari. - */ - -button, -input, -optgroup, -select, -textarea { - font-family: sans-serif; /* 1 */ - font-size: 100%; /* 1 */ - line-height: 1.15; /* 1 */ - margin: 0; /* 2 */ -} - -/** - * Show the overflow in IE. - * 1. Show the overflow in Edge. - */ - -button, -input { /* 1 */ - overflow: visible; -} - -/** - * Remove the inheritance of text transform in Edge, Firefox, and IE. - * 1. Remove the inheritance of text transform in Firefox. - */ - -button, -select { /* 1 */ - text-transform: none; -} - -/** - * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` - * controls in Android 4. - * 2. Correct the inability to style clickable types in iOS and Safari. - */ - -button, -html [type="button"], /* 1 */ -[type="reset"], -[type="submit"] { - -webkit-appearance: button; /* 2 */ -} - -/** - * Remove the inner border and padding in Firefox. - */ - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; -} - -/** - * Restore the focus styles unset by the previous rule. - */ - -button:-moz-focusring, -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring { - outline: 1px dotted ButtonText; -} - -/** - * Change the border, margin, and padding in all browsers (opinionated). - */ - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -/** - * 1. Correct the text wrapping in Edge and IE. - * 2. Correct the color inheritance from `fieldset` elements in IE. - * 3. Remove the padding so developers are not caught out when they zero out - * `fieldset` elements in all browsers. - */ - -legend { - box-sizing: border-box; /* 1 */ - color: inherit; /* 2 */ - display: table; /* 1 */ - max-width: 100%; /* 1 */ - padding: 0; /* 3 */ - white-space: normal; /* 1 */ -} - -/** - * 1. Add the correct display in IE 9-. - * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. - */ - -progress { - display: inline-block; /* 1 */ - vertical-align: baseline; /* 2 */ -} - -/** - * Remove the default vertical scrollbar in IE. - */ - -textarea { - overflow: auto; -} - -/** - * 1. Add the correct box sizing in IE 10-. - * 2. Remove the padding in IE 10-. - */ - -[type="checkbox"], -[type="radio"] { - box-sizing: border-box; /* 1 */ - padding: 0; /* 2 */ -} - -/** - * Correct the cursor style of increment and decrement buttons in Chrome. - */ - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** - * 1. Correct the odd appearance in Chrome and Safari. - * 2. Correct the outline style in Safari. - */ - -[type="search"] { - -webkit-appearance: textfield; /* 1 */ - outline-offset: -2px; /* 2 */ -} - -/** - * Remove the inner padding and cancel buttons in Chrome and Safari on OS X. - */ - -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * 1. Correct the inability to style clickable types in iOS and Safari. - * 2. Change font properties to `inherit` in Safari. - */ - -::-webkit-file-upload-button { - -webkit-appearance: button; /* 1 */ - font: inherit; /* 2 */ -} - -/* Interactive - ========================================================================== */ - -/* - * Add the correct display in IE 9-. - * 1. Add the correct display in Edge, IE, and Firefox. - */ - -details, /* 1 */ -menu { - display: block; -} - -/* - * Add the correct display in all browsers. - */ - -summary { - display: list-item; -} - -/* Scripting - ========================================================================== */ - -/** - * Add the correct display in IE 9-. - */ - -canvas { - display: inline-block; -} - -/** - * Add the correct display in IE. - */ - -template { - display: none; -} - -/* Hidden - ========================================================================== */ - -/** - * Add the correct display in IE 10-. - */ - -[hidden] { - display: none; -} \ No newline at end of file diff --git a/app/validators/myvalidator.rb b/app/validators/myvalidator.rb new file mode 100644 index 000000000..d88dfc50e --- /dev/null +++ b/app/validators/myvalidator.rb @@ -0,0 +1,8 @@ + # in app/validators/MyValidator.rb +class MyValidator < ActiveModel::Validator + def validate(task) + unless task.due_date >= Date.now + record.errors[:due_date] << 'The task must be due at a future date!' + end + end +end diff --git a/app/views/sessions/deactivate.html.erb b/app/views/sessions/deactivate.html.erb deleted file mode 100644 index 9037de7cf..000000000 --- a/app/views/sessions/deactivate.html.erb +++ /dev/null @@ -1,2 +0,0 @@ -

    Sessions#deactivate

    -

    Find me in app/views/sessions/deactivate.html.erb

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

    Sessions#destroy

    +

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

    diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 442f1161a633e16d64f9d8f63fe27be8573a2a2a..1fee6f588e4edfcb561535930eaf1030f8304506 100644 GIT binary patch delta 179 zcmZoTz}Rqrae_3X%|sbzMw^WZOYAwA_+K;df8~F@SQ0|Nsi{}cxPDVqfay7+Ul7&#bZl_kv`9Ssf4%uG!U4T2MkixU;RGfT1) z(=$slN|TB~0(#jX0f+S5#LOJM:0x007fbb11c8f7c0> +Did you mean? current_page?: + app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___2036150836773864064_70220716931920' + actionview (4.2.7) lib/action_view/template.rb:145:in `block in render' + activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:333:in `instrument' + actionview (4.2.7) lib/action_view/template.rb:143:in `render' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!' + omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call' + omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' + better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/SK/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + +Started POST "/__better_errors/51a01b820633f742/variables" for ::1 at 2016-10-24 21:17:50 -0700 + + +Started GET "/" for ::1 at 2016-10-24 21:22:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.7ms) + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] +Completed 200 OK in 45ms (Views: 42.1ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-10-24 21:23:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.9ms) + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] +Completed 200 OK in 36ms (Views: 31.1ms | ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-10-24 21:23:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (4.1ms) + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.2ms) + + +Started GET "/auth/github/" for ::1 at 2016-10-24 21:23:59 -0700 + + +Started GET "/auth/github/" for ::1 at 2016-10-24 21:24:00 -0700 + + +Started GET "/auth/github/callback?code=d9c668da6f31dc9c32d4&state=0e4c60f7675f5569a3eddf965cf08bc0091d610bdbbd2ed7" for ::1 at 2016-10-24 21:24:00 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"d9c668da6f31dc9c32d4", "state"=>"0e4c60f7675f5569a3eddf965cf08bc0091d610bdbbd2ed7", "provider"=>"github"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "10665510"], ["provider", "github"]] +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "users" ("uid", "provider", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "10665510"], ["provider", "github"], ["name", "Sassa Kitka"], ["email", "sassa.kitka@gmail.com"], ["created_at", "2016-10-25 04:24:01.903013"], ["updated_at", "2016-10-25 04:24:01.903013"]] +  (3.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 11ms (ActiveRecord: 3.9ms) + + +Started GET "/" for ::1 at 2016-10-24 21:24:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (3.1ms) + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] +Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/main.self-e65957d2091c4a0bb6727d331c08cc5cda01d01ba3a138e55f88ac77ab3e3506.css?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/assets/normalize.self-1acb2b1a830f290caaec567affb88ccca3abbd41358b888a30ba17bd78289bbc.css?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-24 21:24:01 -0700 + + +Started GET "/logout" for ::1 at 2016-10-24 21:24:05 -0700 +Processing by SessionsController#destroy as HTML + Rendered sessions/destroy.html.erb within layouts/application (0.3ms) + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 +Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-24 21:24:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 + Rendered tasks/index.html.erb within layouts/application (10.2ms) + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 +Completed 200 OK in 34ms (Views: 30.7ms | ActiveRecord: 0.8ms) + + +Started GET "/auth/github/" for ::1 at 2016-10-24 21:24:44 -0700 + + +Started GET "/auth/github/" for ::1 at 2016-10-24 21:24:44 -0700 + + +Started GET "/auth/github/callback?code=6022f4e2f16fc53ab6bd&state=bc248a161582795da4325a431fd6ad0ab7fd4e3ba954799a" for ::1 at 2016-10-24 21:24:45 -0700 +Processing by SessionsController#create as HTML + Parameters: {"code"=>"6022f4e2f16fc53ab6bd", "state"=>"bc248a161582795da4325a431fd6ad0ab7fd4e3ba954799a", "provider"=>"github"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "10665510"], ["provider", "github"]] +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-10-24 21:24:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/index.html.erb within layouts/application (6.5ms) + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/main.self-e65957d2091c4a0bb6727d331c08cc5cda01d01ba3a138e55f88ac77ab3e3506.css?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/assets/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/assets/normalize.self-1acb2b1a830f290caaec567affb88ccca3abbd41358b888a30ba17bd78289bbc.css?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/assets/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-10-24 21:24:48 -0700 + + +Started GET "/logout" for ::1 at 2016-10-24 21:24:50 -0700 +Processing by SessionsController#destroy as HTML +Redirected to http://localhost:3000/ +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-10-24 21:24:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 + Rendered tasks/index.html.erb within layouts/application (5.4ms) + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-10-24 21:25:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 + Rendered tasks/index.html.erb within layouts/application (4.8ms) + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 +Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-10-24 21:25:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 + Rendered tasks/index.html.erb within layouts/application (3.6ms) + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 +Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.2ms) diff --git a/test/controllers/sessions_controller_test.rb b/test/controllers/sessions_controller_test.rb index 631fb2a32..9a35cf151 100644 --- a/test/controllers/sessions_controller_test.rb +++ b/test/controllers/sessions_controller_test.rb @@ -1,41 +1,14 @@ require 'test_helper' class SessionsControllerTest < ActionController::TestCase - - def login_a_user - request.env['omniauth.auth'] = OmniAuth.config.mock_auth[:github] - get :create, {provider: "github"} - end - - test "Can Create a user" do - assert_difference('User.count', 1) do - login_a_user - assert_response :redirect - assert_redirected_to root_path - end - end - - test "If a user logs in twice it doesn't create a 2nd user" do - assert_difference('User.count', 1) do - login_a_user - end - assert_no_difference('User.count') do - login_a_user - assert_response :redirect - assert_redirected_to root_path - end - end - test "should get create" do get :create assert_response :success end - test "should get deactivate" do - get :deactivate + test "should get destroy" do + get :destroy assert_response :success end - - end From 02d6169d708fd443eba68ea7106cc848366766b6 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Mon, 24 Oct 2016 21:50:44 -0700 Subject: [PATCH 066/103] changed title --- app/views/layouts/application.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index e3349dc77..799d183a2 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -9,7 +9,7 @@ + -<%= yield %> + <%= yield %> - + From 8d36756f7b09300107bef377860dc34cb63c4cac Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Wed, 26 Oct 2016 10:27:14 -0700 Subject: [PATCH 095/103] changed title display based on method, added path and method --- app/views/tasks/_form.html.erb | 36 ++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb index 9b914f9a9..737e8b47e 100644 --- a/app/views/tasks/_form.html.erb +++ b/app/views/tasks/_form.html.erb @@ -1,23 +1,25 @@ -

    Add a Task

    +
    +

    <%="#{action_name} #{particle}" %> Task

    -<%= form_for @mytask, url: @path do |f| %> + <%= form_for @mytask, method: @method, url: @path do |f| %> - <%= f.label :title %> - <%= f.text_field :title %> + <%= f.label :title %> + <%= f.text_field :title %> - <%= f.label :description %> - <%= f.text_field :description %> + <%= f.label :description %> + <%= f.text_field :description %> - <%= f.label :owner %> - <%= f.text_field :owner %> + <%= f.label :owner %> + <%= f.text_field :owner %> - <%= f.label :completed %> - <%= f.check_box :completed %> - <% if @mytask[:completed] == true %> - <% @mytask[:completed_at] = @mytask[:updated_at] %> - <% else %> - <% @mytask[:completed_at] = nil %> - <% end %> + <%= f.label :completed %> + <%= f.check_box :completed %> + <% if @mytask[:completed] == true %> + <% @mytask[:completed_at] = @mytask[:updated_at] %> + <% else %> + <% @mytask[:completed_at] = nil %> + <% end %> - <%= f.submit action_name %> -<% end %> + <%= f.submit action_name %> + <% end %> +
    \ No newline at end of file From 9f450f3151c5b71e26dd027a103b550e54231b1d Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Wed, 26 Oct 2016 10:27:54 -0700 Subject: [PATCH 096/103] removed unnecessary header --- app/views/tasks/edit.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index e240a0caa..2037adcc3 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,2 +1,2 @@ -

    Update Task Status

    -<%= render partial: "form", locals: {action_name: "edit" } %> \ No newline at end of file + +<%= render partial: "form", locals: {action_name: "Edit", particle: 'Your' } %> \ No newline at end of file From 453ef9a6f743ccda3e75cbab993c3103c72f6cd0 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Wed, 26 Oct 2016 10:29:58 -0700 Subject: [PATCH 097/103] messed with views for oauth --- app/views/tasks/index.html.erb | 79 ++++++++++++++++++---------------- 1 file changed, 42 insertions(+), 37 deletions(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index a25246cf2..b2d308e91 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,44 +1,49 @@ -<% if current_user %> -
    -

    Hey there, <%= current_user.name %>... You have a lot to do.

    -

    The List

    - - - <%= button_to("Add New Task", new_path, method: :get) %> - - <% @tasks.each do |task| %> - -
    -

    Title: <%= link_to(task[:title], show_path(task[:id])) %>

    -

    Description: <%= task[:description] %>

    -

    Completed: - - <% if task[:completed] == true %> - <% good_day = task[:updated_at].strftime("%A, %m/%d/%Y") %> - - <%= good_day %> - <% else %> - --/--/---- - <% end %> -

    - -

    - <%= link_to( "Delete", destroy_path(task[:id]), method: :delete, data: { confirm: "Are you sure?" }, :class => 'button') %> -

    -
    - -
    -<% end %> - -<% else %>
    -

    Welcome, Friend! Can I help you plan your day?

    -

    Let's make a list!

    +
    +

    The List

    +
    - <%= link_to("Add Task", new_path, method: :get, :class => 'button') %> - <% end %> +
    + + <% @tasks.each do |task| %> +
    +
    +
      +
    • Title: <%= link_to(task[:title], show_path(task[:id])) %>
    • +
    • Description: <%= task[:description] %>
    • +
    • Completed: + + <% if task[:completed] == true %> + <% good_day = task[:updated_at].strftime("%A, %m/%d/%Y") %> + + <%= good_day %> + <% else %> + --/--/---- + <% end %> +
    • + +
    • + <%= button_to( "Delete", destroy_path(task[:id]), method: :delete, data: { confirm: "Are you sure?" } ) %> +
    • +
    +
    + +
    + + <% end %> + +
    + +
    +
    + <%= link_to("Add Task", new_path, method: :get, class: 'button') %> +
    +
    +
    + + From 50ddaad9ba659b3036575ffd3428d8e7defa3f42 Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Wed, 26 Oct 2016 10:33:01 -0700 Subject: [PATCH 098/103] messed with oauth views --- app/views/tasks/show.html.erb | 43 ++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 99ddfa3f3..7c9153334 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,22 +1,23 @@ -<% if current_user %> -
    -
    -

    Title: <%= @mytask[:title] %>

    -

    Description: <%= @mytask[:description] %>

    -

    Completed on: - <% if @mytask[:completed] == true %> - <% good_day = @mytask[:updated_at].strftime("%A, %m/%d/%Y") %> - - <%= good_day %> - <% else %> - --/--/---- - <% end %> -

    -

    <%= button_to( "Edit", edit_path(@mytask[:id]), method: :patch) %>

    -

    -
    -
    -<% else %> - <% redirect_to 'new_path' %> -<% end %> \ No newline at end of file +
    +
    +

    Title: <%= @mytask[:title] %>

    +
      +
    • Description: <%= @mytask[:description] %>
    • +
    • Completed on: + + <% if @mytask[:completed] == true %> + <% good_day = @mytask[:updated_at].strftime("%A, %m/%d/%Y") %> + + <%= good_day %> + <% else %> + --/--/---- + <% end %> +
    • +
    • <%= button_to( "Edit", edit_path(@mytask[:id]), method: :patch) %>
    • +
    • <%= button_to( "Delete", destroy_path(@mytask[:id]), method: :delete) %>
    • + +
    +
    +
    + From 073992a906c8dd03fc4221787cae50e41c529dbd Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Wed, 26 Oct 2016 22:34:39 -0700 Subject: [PATCH 099/103] removed header, added to partial locals --- app/views/tasks/new.html.erb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 9486db703..238248510 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,4 +1,2 @@ -

    Add a Task

    - -<%= render partial: "form", locals: {action_name: "new" } %> \ No newline at end of file +<%= render partial: "form", locals: {action_name: "Add", particle: 'a' } %> \ No newline at end of file From a07b85ba5a8d63a00e02e67e2a4eb0eb36635fdb Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Wed, 26 Oct 2016 22:35:45 -0700 Subject: [PATCH 100/103] added landing page route, change root path to landing, messed with naming task routes" --- config/routes.rb | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/config/routes.rb b/config/routes.rb index 934f51029..b1a234dd3 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,5 +1,10 @@ Rails.application.routes.draw do + get 'tasks' => 'landing#index' + + root 'landing#index' + + # ***** SESSIONS ROUTES ***** # get 'login' => 'sessions#new' @@ -16,15 +21,14 @@ # root to: 'tasks#index' - root 'tasks#index' - get 'tasks' => 'tasks#index' , as: 'tasks' + get 'tasks/index' => 'tasks#index', as: 'index' get 'tasks/new' => 'tasks#new' , as: 'new' - post 'tasks' => 'tasks#create' , as: 'create' + post 'tasks/create' => 'tasks#create' , as: 'create' get 'tasks/show/:id' => 'tasks#show' , as: 'show' From ebc44faea67e6f17dbb9126c18cdd489bc3c957e Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Wed, 26 Oct 2016 22:36:28 -0700 Subject: [PATCH 101/103] changed task column user to user_id, added index --- db/schema.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db/schema.rb b/db/schema.rb index 6276af75a..93d80465d 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20161025060353) do +ActiveRecord::Schema.define(version: 20161026150212) do create_table "tasks", force: :cascade do |t| t.string "title" @@ -21,10 +21,10 @@ t.datetime "created_at", null: false t.datetime "updated_at", null: false t.boolean "completed", default: false - t.integer "user" + t.integer "user_id" end - add_index "tasks", ["user"], name: "index_tasks_on_user" + add_index "tasks", ["user_id"], name: "index_tasks_on_user_id" create_table "users", force: :cascade do |t| t.string "uid" From 8b5514483708d5372b0c8fcba3d36ba6e59cc97f Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Wed, 26 Oct 2016 22:37:37 -0700 Subject: [PATCH 102/103] added landing --- app/assets/javascripts/landing.coffee | 3 +++ app/assets/stylesheets/landing.scss | 3 +++ app/controllers/landing_controller.rb | 4 ++++ app/helpers/landing_helper.rb | 2 ++ app/views/landing/index.html.erb | 18 ++++++++++++++++++ ...026150212_change_userto_user_i_din_tasks.rb | 5 +++++ test/controllers/landing_controller_test.rb | 9 +++++++++ 7 files changed, 44 insertions(+) create mode 100644 app/assets/javascripts/landing.coffee create mode 100644 app/assets/stylesheets/landing.scss create mode 100644 app/controllers/landing_controller.rb create mode 100644 app/helpers/landing_helper.rb create mode 100644 app/views/landing/index.html.erb create mode 100644 db/migrate/20161026150212_change_userto_user_i_din_tasks.rb create mode 100644 test/controllers/landing_controller_test.rb diff --git a/app/assets/javascripts/landing.coffee b/app/assets/javascripts/landing.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/landing.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/landing.scss b/app/assets/stylesheets/landing.scss new file mode 100644 index 000000000..f33d6f8d4 --- /dev/null +++ b/app/assets/stylesheets/landing.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the landing controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/landing_controller.rb b/app/controllers/landing_controller.rb new file mode 100644 index 000000000..a5c04b4f7 --- /dev/null +++ b/app/controllers/landing_controller.rb @@ -0,0 +1,4 @@ +class LandingController < ApplicationController + def index + end +end diff --git a/app/helpers/landing_helper.rb b/app/helpers/landing_helper.rb new file mode 100644 index 000000000..6aa3ee924 --- /dev/null +++ b/app/helpers/landing_helper.rb @@ -0,0 +1,2 @@ +module LandingHelper +end diff --git a/app/views/landing/index.html.erb b/app/views/landing/index.html.erb new file mode 100644 index 000000000..22b4a47fd --- /dev/null +++ b/app/views/landing/index.html.erb @@ -0,0 +1,18 @@ +
    +
    +
    +
    +

    If you're new here, please take a moment to register.

    +
    +
    +

    If you've been here before, please login.

    +
    +
    +
    + <%= link_to 'Login via Github', "/auth/github/", class: 'button' %> +
    +
    +
    + + + diff --git a/db/migrate/20161026150212_change_userto_user_i_din_tasks.rb b/db/migrate/20161026150212_change_userto_user_i_din_tasks.rb new file mode 100644 index 000000000..f33371808 --- /dev/null +++ b/db/migrate/20161026150212_change_userto_user_i_din_tasks.rb @@ -0,0 +1,5 @@ +class ChangeUsertoUserIDinTasks < ActiveRecord::Migration + def change + rename_column :tasks, :user, :user_id + end +end diff --git a/test/controllers/landing_controller_test.rb b/test/controllers/landing_controller_test.rb new file mode 100644 index 000000000..b814ae4eb --- /dev/null +++ b/test/controllers/landing_controller_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class LandingControllerTest < ActionController::TestCase + test "should get index" do + get :index + assert_response :success + end + +end From 5c0f9d3c617e7fe9d2727007f2ed77cde549b23d Mon Sep 17 00:00:00 2001 From: RedSquirrelious Date: Wed, 26 Oct 2016 22:38:57 -0700 Subject: [PATCH 103/103] slkdj --- db/development.sqlite3 | Bin 28672 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 db/development.sqlite3 diff --git a/db/development.sqlite3 b/db/development.sqlite3 deleted file mode 100644 index d8df1c9fcf0a98c620b4d045da39e8c9f8044b69..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 28672 zcmeI)%WoS+7y$5boR`}q{zX0(UaDY1!5{Gi=3B(m4ApsW-Z~!53fD0GCS;vl@2dF|SRQlHOWOrugo0;Fv zN?Cd0l{<@m=&@3>Rd++Ck|c@6$Th|YAy?r&2Jh}B_J_L%@H^JGf7I?(GWX-L$*EZ~ zI&qWG_vrY zY&07i?Z9hA2V*ZU=bY6XTgYF}z0T5yoR(&{@+=*loMxBOqGmet&e`}_DwT@8I~%&2 zH7_cSlHuKWtIkV{xxQ+CF%503=3dDyv)juHOV08-yO~>O&f4m&g*;SR%H>yC{uaE~ z78hTDntoXG((InwDwN$8WE8!i(DJuKzu8E$(7PW(UZGjvhSt5}h8w0?(G9)OuX|9? ze5(Q7?5ka9c~CldUVn4#ZBhH^@?J}6w%KgfJh#EF=WaM_i>vHn=_0fkxiG&GdRtyA zb9;C+b@_5^J<!5_-#>Rk6v`5|9HFAyyq7OfxWux*ZNQTSK^rmV?$%97q7$~ zT#2S+yWs=gMo=h2I~#R>tL2J`5FE&e?-H!#7w)X}ru9+PJ9GO$5Mg!?P{mZs)M8_) zE6|a#&b9o<9t;g$gue~mHSW#C%p_dr5&9vaztZpMm-JKE#SH~e00mG01yBG5Pyhu` z00mG01yJBW5lD^01BW03ZMWApa2Ryb%7J{Olm%6hHwKKmim$0Te)i!vxmoI5~5UoO7I@QZ1HCZnaVl+-k8>DpxCk zTP{{h;xGO=Zp|qcMKXQ7v0BB!laUwy$=73DhnfTHCa_EQyHuse~9h#HVGiw$19WR=eu4u_Cn5Suv+l8GSoT^>{1Zdy1tCObyKDYo6*${$ zhhekPuFv-Zs!Y~w9h$PBDQ@aYuOu3X1}a?A09Dq)rBewqbB;_yQ>zd^YECq?`twSdi2|l4#t$}!k z%}sI1EiDV5ONaDhvUF}Hx^7|FZB*G#vprv_*7|~pd3y9kQ*8~#YHFq>mz)y`LMfpz z*84kecSES0L4Oo(>xRS?!x-!jKpM7cNV;P2tQKz41j$?!w-DXEhbq-_P^wgWw-S>i z=?QM9PV2I1%d(V}b<=!3_ma00mG01yBG5 zPyhu`00mG01yJBA3RGg_JZkAyq}jwJq^Y zh!QLw>3+01BW03ZMWA{C@?8<0N)kBr_s8C6bdOIU$m1kt9VzMKbjl`*4>+