diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..568a39f6a --- /dev/null +++ b/Gemfile @@ -0,0 +1,53 @@ +source 'https://rubygems.org' + +git_source(:github) do |repo_name| + repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") + "https://github.com/#{repo_name}.git" +end + +gem 'awesome_print' +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '~> 5.0.2' +# Use sqlite3 as the database for Active Record +gem 'sqlite3' +# Use Puma as the app server +gem 'puma', '~> 3.0' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' +# Use CoffeeScript for .coffee assets and views +gem 'coffee-rails', '~> 4.2' +# See https://github.com/rails/execjs#readme for more supported runtimes +# gem 'therubyracer', platforms: :ruby + +# Use jquery as the JavaScript library +gem 'jquery-rails' +# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks +gem 'turbolinks', '~> 5' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.5' +# Use Redis adapter to run Action Cable in production +# gem 'redis', '~> 3.0' +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use Capistrano for deployment +# gem 'capistrano-rails', group: :development + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug', platform: :mri +end + +group :development do + # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. + gem 'web-console', '>= 3.3.0' + gem 'listen', '~> 3.0.5' + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' + gem 'spring-watcher-listen', '~> 2.0.0' +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..d0a32a07d --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,176 @@ +GEM + remote: https://rubygems.org/ + specs: + actioncable (5.0.2) + actionpack (= 5.0.2) + nio4r (>= 1.2, < 3.0) + websocket-driver (~> 0.6.1) + actionmailer (5.0.2) + actionpack (= 5.0.2) + actionview (= 5.0.2) + activejob (= 5.0.2) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 2.0) + actionpack (5.0.2) + actionview (= 5.0.2) + activesupport (= 5.0.2) + rack (~> 2.0) + rack-test (~> 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.0.2) + activesupport (= 5.0.2) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activejob (5.0.2) + activesupport (= 5.0.2) + globalid (>= 0.3.6) + activemodel (5.0.2) + activesupport (= 5.0.2) + activerecord (5.0.2) + activemodel (= 5.0.2) + activesupport (= 5.0.2) + arel (~> 7.0) + activesupport (5.0.2) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (~> 0.7) + minitest (~> 5.1) + tzinfo (~> 1.1) + arel (7.1.4) + awesome_print (1.7.0) + builder (3.2.3) + byebug (9.0.6) + coffee-rails (4.2.1) + coffee-script (>= 2.2.0) + railties (>= 4.0.0, < 5.2.x) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.12.2) + concurrent-ruby (1.0.5) + debug_inspector (0.0.2) + erubis (2.7.0) + execjs (2.7.0) + ffi (1.9.18) + globalid (0.3.7) + activesupport (>= 4.1.0) + i18n (0.8.1) + jbuilder (2.6.3) + activesupport (>= 3.0.0, < 5.2) + multi_json (~> 1.2) + jquery-rails (4.2.2) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + listen (3.0.8) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.4) + mime-types (>= 1.16, < 4) + method_source (0.8.2) + mime-types (3.1) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0521) + mini_portile2 (2.1.0) + minitest (5.10.1) + multi_json (1.12.1) + nio4r (2.0.0) + nokogiri (1.7.1) + mini_portile2 (~> 2.1.0) + puma (3.8.2) + rack (2.0.1) + rack-test (0.6.3) + rack (>= 1.0) + rails (5.0.2) + actioncable (= 5.0.2) + actionmailer (= 5.0.2) + actionpack (= 5.0.2) + actionview (= 5.0.2) + activejob (= 5.0.2) + activemodel (= 5.0.2) + activerecord (= 5.0.2) + activesupport (= 5.0.2) + bundler (>= 1.3.0, < 2.0) + railties (= 5.0.2) + sprockets-rails (>= 2.0.0) + rails-dom-testing (2.0.2) + activesupport (>= 4.2.0, < 6.0) + nokogiri (~> 1.6) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + railties (5.0.2) + actionpack (= 5.0.2) + activesupport (= 5.0.2) + method_source + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (12.0.0) + rb-fsevent (0.9.8) + rb-inotify (0.9.8) + ffi (>= 0.5.0) + sass (3.4.23) + sass-rails (5.0.6) + railties (>= 4.0.0, < 6) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + spring (2.0.1) + activesupport (>= 4.2) + spring-watcher-listen (2.0.1) + listen (>= 2.7, < 4.0) + spring (>= 1.2, < 3.0) + sprockets (3.7.1) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.2.0) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + sqlite3 (1.3.13) + thor (0.19.4) + thread_safe (0.3.6) + tilt (2.0.7) + turbolinks (5.0.1) + turbolinks-source (~> 5) + turbolinks-source (5.0.0) + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (3.1.9) + execjs (>= 0.3.0, < 3) + web-console (3.4.0) + actionview (>= 5.0) + activemodel (>= 5.0) + debug_inspector + railties (>= 5.0) + websocket-driver (0.6.5) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.2) + +PLATFORMS + ruby + +DEPENDENCIES + awesome_print + byebug + coffee-rails (~> 4.2) + jbuilder (~> 2.5) + jquery-rails + listen (~> 3.0.5) + puma (~> 3.0) + rails (~> 5.0.2) + sass-rails (~> 5.0) + spring + spring-watcher-listen (~> 2.0.0) + sqlite3 + turbolinks (~> 5) + tzinfo-data + uglifier (>= 1.3.0) + web-console (>= 3.3.0) + +BUNDLED WITH + 1.14.6 diff --git a/README.md b/README.md index 399dc287c..c573b6f0c 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ In this baseline, you'll create a new Rails application and get started with two - create a controller action for the task `index` page which contains an array of hard-coded tasks - create an ERB view to display the tasks from the controller action - - - - diff --git a/Rakefile b/Rakefile new file mode 100644 index 000000000..e85f91391 --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require_relative 'config/application' + +Rails.application.load_tasks diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js new file mode 100644 index 000000000..b16e53d6d --- /dev/null +++ b/app/assets/config/manifest.js @@ -0,0 +1,3 @@ +//= link_tree ../images +//= link_directory ../javascripts .js +//= link_directory ../stylesheets .css diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js new file mode 100644 index 000000000..b12018d09 --- /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. JavaScript code in this file should be added after the last require_* statement. +// +// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details +// about supported directives. +// +//= require jquery +//= require jquery_ujs +//= require turbolinks +//= require_tree . diff --git a/app/assets/javascripts/cable.js b/app/assets/javascripts/cable.js new file mode 100644 index 000000000..71ee1e66d --- /dev/null +++ b/app/assets/javascripts/cable.js @@ -0,0 +1,13 @@ +// Action Cable provides the framework to deal with WebSockets in Rails. +// You can generate new channels where WebSocket features live using the rails generate channel command. +// +//= require action_cable +//= require_self +//= require_tree ./channels + +(function() { + this.App || (this.App = {}); + + App.cable = ActionCable.createConsumer(); + +}).call(this); diff --git a/app/assets/javascripts/channels/.keep b/app/assets/javascripts/channels/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/javascripts/tasks.coffee b/app/assets/javascripts/tasks.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/tasks.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css new file mode 100644 index 000000000..b4a1fa150 --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,145 @@ +/* +* 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 other CSS/SCSS +* files in this directory. Styles in this file should be added after the last require_* statement. +* It is generally better to create a new file per style scope. +* +*= require_tree . +*= require_self +*/ + +/*** main structure stuff ***/ +body { + width: 90%; + max-width: 800px; + margin: auto; + height:100vh; +} + +header { + background-color: orange; + padding: 2%; + color: #fff; +} + +header h1 a { + color: #fff; + margin: 0; + transition: all 0.5s; +} + +header h1 a:hover { + color: #ffe14f; +} + +main { + padding: 0 2%; +} + +footer p { + text-align: center; + margin-top: 5%; +} + +a { + text-decoration: none; +} + +p a { + color: #FF8C00; + border: solid 1px #995400; + padding: 5px; + margin-right: 3px; + border-radius: 5px; +} + +p a:hover { + color: #ffe14f; +} + +h2 { + color: #FF8C00; +} + +/*** task list styling ***/ +ul { + padding: 0; +} + +li { + list-style-type: none; + font-size: 1.3em; +} + +li a:first-child, h2 a { + margin-right: 3px; + color: #000; +} + +li a:first-child:hover, h2 a:hover { + text-shadow: 0 0 6px rgba(35, 173, 255, 1); +} + +li a + a { + color: #000; +} + +li a:nth-child(2):hover { + color: #808080; +} + +li a:last-child:hover { + color: red; +} + +/*** forms ***/ +form.new_task, form.edit_task { + width: 95%; + max-width: 500px; + padding: 10px; + border: dashed #ccc 1px; + border-radius: 10px; +} + +form * { + margin: 2%; +} + +input[type="text"] { + height: 20px; +} + +form label + * { + border: solid #ccc 1px; + border-radius: 5px; +} + +input:focus, textarea:focus { + outline: none; + background: #eee; +} + +input[type="text"], textarea { + width: 95%; + display: block; +} + +textarea { + height: 100px; +} + +form.new_task input[type="submit"], form.edit_task input[type="submit"] { + display: block; + width: 80%; + max-width: 200px; + margin: auto; + padding: 4px; + border-width: 1px; + border-radius: 5px; +} diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss new file mode 100644 index 000000000..c5e7712d4 --- /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/channels/application_cable/channel.rb b/app/channels/application_cable/channel.rb new file mode 100644 index 000000000..d67269728 --- /dev/null +++ b/app/channels/application_cable/channel.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Channel < ActionCable::Channel::Base + end +end diff --git a/app/channels/application_cable/connection.rb b/app/channels/application_cable/connection.rb new file mode 100644 index 000000000..0ff5442f4 --- /dev/null +++ b/app/channels/application_cable/connection.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Connection < ActionCable::Connection::Base + end +end diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 000000000..1c07694e9 --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,3 @@ +class ApplicationController < ActionController::Base + protect_from_forgery with: :exception +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb new file mode 100644 index 000000000..5a8118ca3 --- /dev/null +++ b/app/controllers/tasks_controller.rb @@ -0,0 +1,53 @@ +class TasksController < ApplicationController + def index + @tasks = Task.all + end + + def show + @task = Task.find(params[:id]) + end + + def new + @task = Task.new + end + + def create + task = Task.create task_params + task.deadline ||= Time.now + task.save + redirect_to tasks_path unless task.id == nil + end + + def edit + @task = Task.find(params[:id]) + end + + def update + task = Task.find(params[:id]) + if task.update(task_params) + redirect_to task_path + end + end + + def destroy + Task.destroy(params[:id]) + redirect_to tasks_path + end + + def toggle_complete + task = Task.find(params[:id]) + if task.completed + task.completed = nil + else + task.completed = Time.now + end + + redirect_to(:back) if task.save + end + + private + + def task_params + params.require(:task).permit(:name, :description, :deadline) + end +end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 000000000..de6be7945 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/app/helpers/tasks_helper.rb b/app/helpers/tasks_helper.rb new file mode 100644 index 000000000..ce894d00c --- /dev/null +++ b/app/helpers/tasks_helper.rb @@ -0,0 +1,2 @@ +module TasksHelper +end diff --git a/app/jobs/application_job.rb b/app/jobs/application_job.rb new file mode 100644 index 000000000..a009ace51 --- /dev/null +++ b/app/jobs/application_job.rb @@ -0,0 +1,2 @@ +class ApplicationJob < ActiveJob::Base +end diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb new file mode 100644 index 000000000..286b2239d --- /dev/null +++ b/app/mailers/application_mailer.rb @@ -0,0 +1,4 @@ +class ApplicationMailer < ActionMailer::Base + default from: 'from@example.com' + layout 'mailer' +end diff --git a/app/models/application_record.rb b/app/models/application_record.rb new file mode 100644 index 000000000..10a4cba84 --- /dev/null +++ b/app/models/application_record.rb @@ -0,0 +1,3 @@ +class ApplicationRecord < ActiveRecord::Base + self.abstract_class = true +end diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/task.rb b/app/models/task.rb new file mode 100644 index 000000000..3c2342421 --- /dev/null +++ b/app/models/task.rb @@ -0,0 +1,2 @@ +class Task < ApplicationRecord +end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 000000000..5f33c3742 --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,22 @@ + + + + <%= @title %>Tasks Tasks Tasks + <%= csrf_meta_tags %> + + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + + + +
+

<%= link_to "Tasks Tasks Tasks", root_path %>

+
+ <%= yield %> + + + diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb new file mode 100644 index 000000000..cbd34d2e9 --- /dev/null +++ b/app/views/layouts/mailer.html.erb @@ -0,0 +1,13 @@ + + + + + + + + + <%= yield %> + + diff --git a/app/views/layouts/mailer.text.erb b/app/views/layouts/mailer.text.erb new file mode 100644 index 000000000..37f0bddbd --- /dev/null +++ b/app/views/layouts/mailer.text.erb @@ -0,0 +1 @@ +<%= yield %> diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb new file mode 100644 index 000000000..1ae3671db --- /dev/null +++ b/app/views/tasks/_form.html.erb @@ -0,0 +1,12 @@ +<%= form_for @task do |f| %> + <%= f.label :name %> + <%= f.text_field :name %> + + <%= f.label :description %> + <%= f.text_area :description %> + + <%= f.label :deadline %> + <%= f.date_field :deadline %> + + <%= f.submit action_name + " Task" %> +<% end %> diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb new file mode 100644 index 000000000..fb627b575 --- /dev/null +++ b/app/views/tasks/edit.html.erb @@ -0,0 +1,9 @@ +<% @title = "Edit " + @task.name + " - " %> + +
+

Edit <%= @task.name %>

+ + <%= render partial: "form", locals: { action_name: "Edit"} %> + +

<%= link_to "Back to " + @task.name, task_path(@task.id) %>

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

Tasks

+ +

<%= link_to "Add New Task", new_task_path %>

+
diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb new file mode 100644 index 000000000..bbca28b6f --- /dev/null +++ b/app/views/tasks/new.html.erb @@ -0,0 +1,9 @@ +<% @title = "Add New Task - " %> + +
+

Add New Task

+ + <%= render partial: "form", locals: { action_name: "Add"} %> + +

<%= link_to "Back to Tasks", tasks_path %>

+
diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb new file mode 100644 index 000000000..63bbf23e7 --- /dev/null +++ b/app/views/tasks/show.html.erb @@ -0,0 +1,30 @@ +<% @title = @task.name + " - " %> + +
+

+ <%= @task.name %> + + <% if @task.completed %> + <%= link_to raw("☑"), toggle_complete_path, method: :patch %> + <% else %> + <%= link_to raw("☐"), toggle_complete_path, method: :patch %> + <% end %> +

+

<%= @task.description %>

+

+ <% if @task.completed %> +

<%= @task.completed.strftime("Completed on: %m/%d/%Y") %> ✓

+ <% else %> +

<%= @task.deadline.strftime("Deadline: %m/%d/%Y") %>

+ <% end %> +

+

+ <%= link_to "[edit task]", edit_task_path %> + <%= + link_to "[delete task]", delete_task_path, + data: { confirm: "Are you sure you want to delete this task?" }, + method: :delete + %> + <%= link_to "Back to Tasks", tasks_path %> +

+
diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 000000000..66e9889e8 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 000000000..5badb2fde --- /dev/null +++ b/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../config/application', __dir__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 000000000..d87d5f578 --- /dev/null +++ b/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 000000000..e620b4dad --- /dev/null +++ b/bin/setup @@ -0,0 +1,34 @@ +#!/usr/bin/env ruby +require 'pathname' +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + # puts "\n== Copying sample files ==" + # unless File.exist?('config/database.yml') + # cp 'config/database.yml.sample', 'config/database.yml' + # end + + puts "\n== Preparing database ==" + system! 'bin/rails db:setup' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/bin/spring b/bin/spring new file mode 100755 index 000000000..fb2ec2ebb --- /dev/null +++ b/bin/spring @@ -0,0 +1,17 @@ +#!/usr/bin/env ruby + +# This file loads spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require 'rubygems' + require 'bundler' + + lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read) + spring = lockfile.specs.detect { |spec| spec.name == "spring" } + if spring + Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path + gem 'spring', spring.version + require 'spring/binstub' + end +end diff --git a/bin/update b/bin/update new file mode 100755 index 000000000..a8e4462f2 --- /dev/null +++ b/bin/update @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby +require 'pathname' +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a way to update your development environment automatically. + # Add necessary update steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + puts "\n== Updating database ==" + system! 'bin/rails db:migrate' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/config.ru b/config.ru new file mode 100644 index 000000000..f7ba0b527 --- /dev/null +++ b/config.ru @@ -0,0 +1,5 @@ +# This file is used by Rack-based servers to start the application. + +require_relative 'config/environment' + +run Rails.application diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 000000000..25ee0e0e3 --- /dev/null +++ b/config/application.rb @@ -0,0 +1,15 @@ +require_relative 'boot' + +require 'rails/all' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module TaskList + class Application < Rails::Application + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 000000000..30f5120df --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,3 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/config/cable.yml b/config/cable.yml new file mode 100644 index 000000000..0bbde6f74 --- /dev/null +++ b/config/cable.yml @@ -0,0 +1,9 @@ +development: + adapter: async + +test: + adapter: async + +production: + adapter: redis + url: redis://localhost:6379/1 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..426333bb4 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require_relative 'application' + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 000000000..6f7197045 --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,54 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports. + config.consider_all_requests_local = true + + # Enable/disable caching. By default caching is disabled. + if Rails.root.join('tmp/caching-dev.txt').exist? + config.action_controller.perform_caching = true + + config.cache_store = :memory_store + config.public_file_server.headers = { + 'Cache-Control' => 'public, max-age=172800' + } + else + config.action_controller.perform_caching = false + + config.cache_store = :null_store + end + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + config.action_mailer.perform_caching = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Suppress logger output for asset requests. + config.assets.quiet = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true + + # Use an evented file watcher to asynchronously detect changes in source code, + # routes, locales, etc. This feature depends on the listen gem. + config.file_watcher = ActiveSupport::EventedFileUpdateChecker +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 000000000..29a40f265 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,86 @@ +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 + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Mount Action Cable outside main process or domain + # config.action_cable.mount_path = nil + # config.action_cable.url = 'wss://example.com/cable' + # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ] + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + config.log_tags = [ :request_id ] + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Use a real queuing backend for Active Job (and separate queues per environment) + # config.active_job.queue_adapter = :resque + # config.active_job.queue_name_prefix = "TaskList_#{Rails.env}" + config.action_mailer.perform_caching = false + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Use a different logger for distributed setups. + # require 'syslog/logger' + # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') + + if ENV["RAILS_LOG_TO_STDOUT"].present? + logger = ActiveSupport::Logger.new(STDOUT) + logger.formatter = config.log_formatter + config.logger = ActiveSupport::TaggedLogging.new(logger) + end + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 000000000..30587ef6d --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,42 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure public file server for tests with Cache-Control for performance. + config.public_file_server.enabled = true + config.public_file_server.headers = { + 'Cache-Control' => 'public, max-age=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 + config.action_mailer.perform_caching = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/initializers/application_controller_renderer.rb b/config/initializers/application_controller_renderer.rb new file mode 100644 index 000000000..51639b67a --- /dev/null +++ b/config/initializers/application_controller_renderer.rb @@ -0,0 +1,6 @@ +# Be sure to restart your server when you modify this file. + +# ApplicationController.renderer.defaults.merge!( +# http_host: 'example.org', +# https: false +# ) 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..5a6a32d37 --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,5 @@ +# Be sure to restart your server when you modify this file. + +# Specify a serializer for the signed and encrypted cookie jars. +# Valid options are :json, :marshal, and :hybrid. +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/new_framework_defaults.rb b/config/initializers/new_framework_defaults.rb new file mode 100644 index 000000000..671abb69a --- /dev/null +++ b/config/initializers/new_framework_defaults.rb @@ -0,0 +1,24 @@ +# Be sure to restart your server when you modify this file. +# +# This file contains migration options to ease your Rails 5.0 upgrade. +# +# Read the Guide for Upgrading Ruby on Rails for more info on each option. + +# Enable per-form CSRF tokens. Previous versions had false. +Rails.application.config.action_controller.per_form_csrf_tokens = true + +# Enable origin-checking CSRF mitigation. Previous versions had false. +Rails.application.config.action_controller.forgery_protection_origin_check = true + +# Make Ruby 2.4 preserve the timezone of the receiver when calling `to_time`. +# Previous versions had false. +ActiveSupport.to_time_preserves_timezone = true + +# Require `belongs_to` associations by default. Previous versions had false. +Rails.application.config.active_record.belongs_to_required_by_default = true + +# Do not halt callback chains when a callback returns false. Previous versions had true. +ActiveSupport.halt_callback_chains_on_return_false = false + +# Configure SSL options to enable HSTS with subdomains. Previous versions had false. +Rails.application.config.ssl_options = { hsts: { subdomains: true } } diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb new file mode 100644 index 000000000..80e157130 --- /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: '_TaskList_session' diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 000000000..bbfc3961b --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 000000000..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/puma.rb b/config/puma.rb new file mode 100644 index 000000000..c7f311f81 --- /dev/null +++ b/config/puma.rb @@ -0,0 +1,47 @@ +# Puma can serve each request in a thread from an internal thread pool. +# The `threads` method setting takes two numbers a minimum and maximum. +# Any libraries that use thread pools should be configured to match +# the maximum value specified for Puma. Default is set to 5 threads for minimum +# and maximum, this matches the default thread size of Active Record. +# +threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }.to_i +threads threads_count, threads_count + +# Specifies the `port` that Puma will listen on to receive requests, default is 3000. +# +port ENV.fetch("PORT") { 3000 } + +# Specifies the `environment` that Puma will run in. +# +environment ENV.fetch("RAILS_ENV") { "development" } + +# Specifies the number of `workers` to boot in clustered mode. +# Workers are forked webserver processes. If using threads and workers together +# the concurrency of the application would be max `threads` * `workers`. +# Workers do not work on JRuby or Windows (both of which do not support +# processes). +# +# workers ENV.fetch("WEB_CONCURRENCY") { 2 } + +# Use the `preload_app!` method when specifying a `workers` number. +# This directive tells Puma to first boot the application and load code +# before forking the application. This takes advantage of Copy On Write +# process behavior so workers use less memory. If you use this option +# you need to make sure to reconnect any threads in the `on_worker_boot` +# block. +# +# preload_app! + +# The code in the `on_worker_boot` will be called if you are using +# clustered mode by specifying a number of `workers`. After each worker +# process is booted this block will be run, if you are using `preload_app!` +# option you will want to use this block to reconnect to any threads +# or connections that may have been created at application boot, Ruby +# cannot share connections between processes. +# +# on_worker_boot do +# ActiveRecord::Base.establish_connection if defined?(ActiveRecord) +# end + +# Allow puma to be restarted by `rails restart` command. +plugin :tmp_restart diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 000000000..769876038 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,17 @@ +Rails.application.routes.draw do + # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html + root to: 'tasks#index' + + get '/tasks/new', to: 'tasks#new', as: 'new_task' + post '/tasks', to: 'tasks#create' + + patch '/tasks/:id/toggle_complete', to: 'tasks#toggle_complete', as: 'toggle_complete' + + get '/tasks/:id/edit', to: "tasks#edit", as: 'edit_task' + patch '/tasks/:id', to: 'tasks#update' + + get '/tasks', to: 'tasks#index' + get '/tasks/:id', to: 'tasks#show', as: 'task' + + delete '/tasks/:id', to: 'tasks#destroy', as: 'delete_task' +end diff --git a/config/secrets.yml b/config/secrets.yml new file mode 100644 index 000000000..f3dd1ed3f --- /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 `rails secret` to generate a secure secret key. + +# Make sure the secrets in this file are kept private +# if you're sharing your code publicly. + +development: + secret_key_base: cd5992c8210ecdaef55560ed2500ae5e9ee5e9c41b688396e44f81acd2a7777deaeacfed2263b928dc4e167ec1437e3b09ad42fb21a160108cbaf4a95b965463 + +test: + secret_key_base: 37633aaa85e253656f428e463efdb0300cd863c5ac2e932f5e0886b47a3667fd0e5c3b53d632a7a0c0325524e10f9cae40f0349f7cb8b4aa4cce1e6158e2fd6b + +# 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/config/spring.rb b/config/spring.rb new file mode 100644 index 000000000..c9119b40c --- /dev/null +++ b/config/spring.rb @@ -0,0 +1,6 @@ +%w( + .ruby-version + .rbenv-vars + tmp/restart.txt + tmp/caching-dev.txt +).each { |path| Spring.watch(path) } diff --git a/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 000000000..b9018deb2 Binary files /dev/null and b/db/development.sqlite3 differ diff --git a/db/migrate/20170321205938_create_tasks.rb b/db/migrate/20170321205938_create_tasks.rb new file mode 100644 index 000000000..65bae2c96 --- /dev/null +++ b/db/migrate/20170321205938_create_tasks.rb @@ -0,0 +1,12 @@ +class CreateTasks < ActiveRecord::Migration[5.0] + def change + create_table :tasks do |t| + t.string :name + t.text :description + t.datetime :deadline + t.boolean :completed + + t.timestamps + end + end +end diff --git a/db/migrate/20170324221739_change_tasks_completed_col.rb b/db/migrate/20170324221739_change_tasks_completed_col.rb new file mode 100644 index 000000000..da65ef440 --- /dev/null +++ b/db/migrate/20170324221739_change_tasks_completed_col.rb @@ -0,0 +1,5 @@ +class ChangeTasksCompletedCol < ActiveRecord::Migration[5.0] + def change + change_column :tasks, :completed, :datetime + end +end diff --git a/db/migrate/20170325204728_change_datetime_fields_to_date.rb b/db/migrate/20170325204728_change_datetime_fields_to_date.rb new file mode 100644 index 000000000..f6e3da80e --- /dev/null +++ b/db/migrate/20170325204728_change_datetime_fields_to_date.rb @@ -0,0 +1,6 @@ +class ChangeDatetimeFieldsToDate < ActiveRecord::Migration[5.0] + def change + change_column :tasks, :completed, :date + change_column :tasks, :deadline, :date + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..05dbc8059 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,24 @@ +# 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: 20170325204728) do + + create_table "tasks", force: :cascade do |t| + t.string "name" + t.text "description" + t.date "deadline" + t.date "completed" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + +end diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100644 index 000000000..1beea2acc --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,7 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup). +# +# Examples: +# +# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) +# Character.create(name: 'Luke', movie: movies.first) diff --git a/lib/assets/.keep b/lib/assets/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/lib/tasks/.keep b/lib/tasks/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/log/.keep b/log/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/log/development.log b/log/development.log new file mode 100644 index 000000000..9d3392497 --- /dev/null +++ b/log/development.log @@ -0,0 +1,14585 @@ +Started GET "/tasks" for ::1 at 2017-03-20 14:38:20 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.4ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.1ms) +Started GET "/tasks" for ::1 at 2017-03-20 14:39:17 -0700 + +ActionController::RoutingError (uninitialized constant TasksController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (1.5ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.7ms) +Started GET "/tasks" for ::1 at 2017-03-20 14:40:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 434ms (Views: 432.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-20 14:53:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 41ms (Views: 37.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-20 14:53:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 39ms (Views: 37.2ms | ActiveRecord: 0.0ms) + + +  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY) +  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.1ms) begin transaction +  (0.5ms) rollback transaction +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.1ms) begin transaction +  (0.1ms) rollback transaction +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.1ms) begin transaction +  (0.1ms) rollback transaction + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.1ms) begin transaction +  (0.1ms) rollback transaction + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.2ms) begin transaction +  (0.1ms) rollback transaction + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.1ms) begin transaction +  (0.1ms) rollback transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.1ms) begin transaction +  (0.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "descripiton" text, "deadline" datetime, "completed" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170321205938"]] +  (1.7ms) commit transaction + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2017-03-21 21:11:40 UTC], ["updated_at", 2017-03-21 21:11:40 UTC]] +  (0.6ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.1ms) begin transaction +  (0.8ms) DROP TABLE "tasks" + SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20170321205938"]] +  (0.7ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.1ms) begin transaction +  (0.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "descripiton" text, "deadline" datetime, "completed" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170321205938"]] +  (1.7ms) commit transaction + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.4ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.3ms) begin transaction +  (0.7ms) DROP TABLE "tasks" + SQL (0.5ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20170321205938"]] +  (1.7ms) commit transaction + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20170321205938) +  (0.1ms) begin transaction +  (0.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "deadline" datetime, "completed" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170321205938"]] +  (1.6ms) commit transaction + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.9ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Wash dishes"], ["description", "Get them dishes washed!"], ["created_at", 2017-03-21 21:19:05 UTC], ["updated_at", 2017-03-21 21:19:05 UTC]] +  (1.9ms) commit transaction +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Vacuum"], ["description", "Vacuum the floors"], ["created_at", 2017-03-21 21:20:11 UTC], ["updated_at", 2017-03-21 21:20:11 UTC]] +  (1.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Make dinner"], ["description", "Food is good!"], ["created_at", 2017-03-21 21:24:00 UTC], ["updated_at", 2017-03-21 21:24:00 UTC]] +  (1.6ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Task Load (1.4ms) SELECT "tasks".* FROM "tasks" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "deadline" = ?, "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", 2017-03-21 21:35:23 UTC], ["completed", true], ["updated_at", 2017-03-21 21:35:44 UTC], ["id", 2]] +  (1.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "deadline" = ?, "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", 2017-03-22 12:00:00 UTC], ["completed", false], ["updated_at", 2017-03-21 21:38:43 UTC], ["id", 3]] +  (1.8ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" +Started GET "/books" for ::1 at 2017-03-21 14:43:55 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActionController::RoutingError (No route matches [GET] "/books"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (6.4ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.2ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (142.4ms) +Started GET "/tasks" for ::1 at 2017-03-21 14:43:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 298ms (Views: 283.1ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 14:44:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 14:45:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + + Task Load (1.4ms) SELECT "tasks".* FROM "tasks" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "deadline" = ?, "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", 2017-03-25 16:00:00 UTC], ["completed", false], ["updated_at", 2017-03-21 21:47:18 UTC], ["id", 1]] +  (2.2ms) commit transaction +Started GET "/tasks" for ::1 at 2017-03-21 14:47:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 14:48:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 14:51:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-21 14:57:36 -0700 + +ArgumentError (Missing :controller key on routes definition, please check your routes.): + +config/routes.rb:3:in `block in ' +config/routes.rb:1:in `' +Started GET "/" for ::1 at 2017-03-21 14:57:36 -0700 + +ActionController::RoutingError (No route matches [GET] "/"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.2ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (151.8ms) +Started GET "/" for ::1 at 2017-03-21 14:58:17 -0700 + +NoMethodError (undefined method `oot' for # +Did you mean? root): + +config/routes.rb:3:in `block in ' +config/routes.rb:1:in `' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.4ms) +Started GET "/" for ::1 at 2017-03-21 14:58:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 34ms (Views: 26.4ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 15:00:21 -0700 + +AbstractController::ActionNotFound (The action 'show' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms) +Started GET "/tasks" for ::1 at 2017-03-21 15:02:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 33ms (Views: 25.3ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 15:54:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 67ms (Views: 62.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 15:56:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 406 Not Acceptable in 62ms (ActiveRecord: 0.8ms) + + + +ActionController::UnknownFormat (TasksController#show is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.): + +actionpack (5.0.2) lib/action_controller/metal/implicit_render.rb:56:in `default_render' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' +activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' +activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' +activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' +activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.2ms) +Started GET "/tasks/1" for ::1 at 2017-03-21 15:56:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 15:57:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (6.8ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `title' for #): + 1:

<%= @task.title %>

+ +app/views/tasks/show.html.erb:1:in `_app_views_tasks_show_html_erb___2811050729589971079_70323870961880' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.4ms) +Started GET "/tasks/1" for ::1 at 2017-03-21 15:57:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 15:58:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 16:04:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 16:04:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 36ms (Views: 33.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-21 16:04:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 38ms (Views: 35.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-21 16:04:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 16:05:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 16:05:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 38ms (Views: 34.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 16:05:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.7ms) +Completed 200 OK in 42ms (Views: 40.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-21 16:05:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 35ms (Views: 32.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 16:05:07 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 39ms (Views: 37.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-21 16:05:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 34ms (Views: 31.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 16:05:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 37ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 16:06:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 40ms (Views: 37.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 16:09:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 16:09:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.6ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `date' for Sat, 25 Mar 2017 16:00:00 UTC +00:00:Time): + 2: + 3:

<%= @task.description %>

+ 4:

+ 5: Complete by: <%= @task.deadline.date %> + 6:

+ 7: + 8: <%= link_to "Back to tasks", tasks_path %> + +app/views/tasks/show.html.erb:5:in `_app_views_tasks_show_html_erb___2811050729589971079_70323870504000' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.0ms) +Started GET "/tasks/1" for ::1 at 2017-03-21 16:09:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 16:09:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 16:10:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 16:10:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 22ms (Views: 19.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 16:11:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 16:11:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 52ms (Views: 46.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-21 16:11:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 39ms (Views: 36.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 16:11:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 44ms (Views: 41.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-21 16:11:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 34ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 16:11:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 39ms (Views: 35.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-21 16:11:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 39ms (Views: 36.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-21 16:12:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-21 16:12:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 41ms (Views: 38.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-21 16:12:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 47ms (Views: 43.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:34:19 -0700 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.0ms) +Completed 200 OK in 231ms (Views: 214.8ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:36:10 -0700 + +AbstractController::ActionNotFound (The action 'create' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:36:57 -0700 +Processing by TasksController#create as HTML +Completed 406 Not Acceptable in 52ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat (TasksController#create is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.): + +actionpack (5.0.2) lib/action_controller/metal/implicit_render.rb:56:in `default_render' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' +activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' +activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' +activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' +activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (67.6ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:38:34 -0700 +Processing by TasksController#new as HTML +Completed 406 Not Acceptable in 49ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat (TasksController#new is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.): + +actionpack (5.0.2) lib/action_controller/metal/implicit_render.rb:56:in `default_render' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' +activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' +activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' +activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' +activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.5ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:39:25 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.3ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:39:34 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.3ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:41:26 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:43:48 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:45:45 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 12:45:57 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [4 times] (5.3ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.5ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.2ms) +Started GET "/tasks" for ::1 at 2017-03-22 12:47:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 28ms (Views: 21.5ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:48:01 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 12:48:12 -0700 + +AbstractController::ActionNotFound (The action 'create' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:50:56 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 12:51:53 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"9fqBefR0x/m2Bi7lwCz14w864uvrJu5kRIN5luxyAvYIpvrom6O/2R/pM8/XkgE1k59p1N/irAQ2RcHjyMbaxg==", "name"=>"wash the windows", "description"=>"wash them", "deadline"=>"2017-03-24", "completed"=>"on"} +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.9ms) + + + +ArgumentError (comparison of String with 0 failed): + +app/controllers/tasks_controller.rb:17:in `<' +app/controllers/tasks_controller.rb:17:in `new' +app/controllers/tasks_controller.rb:17:in `create' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.6ms) +Started GET "/new" for ::1 at 2017-03-22 12:52:16 -0700 + +ActionController::RoutingError (No route matches [GET] "/new"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [5 times] (1.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.9ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:52:20 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.9ms) +Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:53:20 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 12:53:30 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"/uTTcRsRuG+iWY9Flq+vBEsl4othsng/lnGQj4FdsZADuKjgdMbATwu2km+BEVvS14BptFV2Ol/ktyj6pelpoA==", "name"=>"lasdlfk", "description"=>"asd;lk", "deadline"=>"2017-03-16"} +  (0.3ms) begin transaction + SQL (0.8ms) INSERT INTO "tasks" ("name", "description", "deadline", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "lasdlfk"], ["description", "asd;lk"], ["deadline", 2017-03-16 00:00:00 UTC], ["created_at", 2017-03-22 19:53:30 UTC], ["updated_at", 2017-03-22 19:53:30 UTC]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 19ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:53:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for ::1 at 2017-03-22 12:53:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 44ms (Views: 31.1ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:54:10 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 12:54:25 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"j35wMK+g5sIjLcQ/xWBvuUrekBuAJ4Cx/6evgqNFuJdyIguhwHee4orC2RXS3ptv1nsbJLTjwtGNYRf3h/Fgpw==", "name"=>"clean windows", "description"=>"wash them", "deadline"=>"2017-03-25", "completed"=>"on"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "deadline", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "clean windows"], ["description", "wash them"], ["deadline", 2017-03-25 00:00:00 UTC], ["completed", true], ["created_at", 2017-03-22 19:54:25 UTC], ["updated_at", 2017-03-22 19:54:25 UTC]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:54:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-22 12:54:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.7ms) +Completed 200 OK in 40ms (Views: 37.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:55:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 47ms (Views: 44.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:55:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:55:53 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 39ms (Views: 36.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 13:04:44 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.0ms) +Completed 200 OK in 44ms (Views: 42.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 13:07:58 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 13:08:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 36ms (Views: 33.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 13:08:01 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.4ms) +Completed 200 OK in 44ms (Views: 41.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 13:08:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 47ms (Views: 44.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 13:08:51 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.1ms) +Completed 200 OK in 38ms (Views: 34.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 13:09:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 46ms (Views: 42.9ms | ActiveRecord: 0.3ms) + + + Task Load (1.7ms) SELECT "tasks".* FROM "tasks" +Started GET "/tasks/new" for ::1 at 2017-03-22 13:23:49 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.9ms) +Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-22 13:23:53 -0700 + +ActionController::RoutingError (uninitialized constant BooksController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (2.1ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (90.5ms) +Started GET "/tasks/3/edit" for ::1 at 2017-03-22 13:24:35 -0700 + +ActionController::RoutingError (uninitialized constant BooksController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (2.3ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.7ms) +Started GET "/tasks/3/edit" for ::1 at 2017-03-22 13:24:47 -0700 + +ActionController::RoutingError (uninitialized constant BooksController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (2.6ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.5ms) +Started GET "/tasks/3" for ::1 at 2017-03-22 13:25:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 40ms (Views: 19.1ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-22 13:25:17 -0700 + +ActionController::RoutingError (uninitialized constant BooksController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (2.2ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.5ms) +Started GET "/" for ::1 at 2017-03-22 14:45:04 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.3ms) +Completed 200 OK in 225ms (Views: 210.6ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-22 14:47:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 34ms (Views: 19.0ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-22 14:47:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 39ms (Views: 37.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:00:45 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (19.6ms) +Completed 200 OK in 73ms (Views: 45.0ms | ActiveRecord: 1.4ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 15:01:09 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ra5dku+xBISGBkoLyNrduBMpVlGUpwWPvw5+VewUS5GUsAW7/hZ4zEW6L5EUvu+x6y3wFrTEPELpjGl8dVgU/w==", "task"=>{"name"=>"Polish the silverware", "description"=>"polish polish!", "deadline"=>"2017-03-29", "completed"=>"0"}, "commit"=>"Add Task"} +  (0.2ms) begin transaction + SQL (0.9ms) INSERT INTO "tasks" ("name", "description", "deadline", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Polish the silverware"], ["description", "polish polish!"], ["deadline", 2017-03-29 00:00:00 UTC], ["completed", false], ["created_at", 2017-03-22 22:01:09 UTC], ["updated_at", 2017-03-22 22:01:09 UTC]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:01:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-22 15:01:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 39ms (Views: 35.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:01:17 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.6ms) +Completed 200 OK in 37ms (Views: 35.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 15:01:31 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"69xTBEs7b1oERuz/fT8Qx3khXsUff9ClNtyQDTRrYpzSwgstWpwTEsf6iWWhWyLOgSX4gj8c6WhgXockrSc98g==", "task"=>{"name"=>"do another thing", "description"=>"doooo it!", "deadline"=>"2017-03-07", "completed"=>"1"}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "deadline", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "do another thing"], ["description", "doooo it!"], ["deadline", 2017-03-07 00:00:00 UTC], ["completed", true], ["created_at", 2017-03-22 22:01:31 UTC], ["updated_at", 2017-03-22 22:01:31 UTC]] +  (5.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 11ms (ActiveRecord: 5.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:01:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/7" for ::1 at 2017-03-22 15:01:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 38ms (Views: 35.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:02:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/7" for ::1 at 2017-03-22 15:02:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 50ms (Views: 48.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:02:17 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 40ms (Views: 38.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 15:02:27 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"02wuBm7dsJyngVDcdURLYza2QuQ06207p7EklE2dbNzqcnYvf3rM1GQ9NUapIHlqzrLkoxSIVPbxMzO91NEzsg==", "task"=>{"name"=>"again again", "description"=>"again", "deadline"=>"2017-03-14", "completed"=>"1"}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "deadline", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "again again"], ["description", "again"], ["deadline", 2017-03-14 00:00:00 UTC], ["completed", true], ["created_at", 2017-03-22 22:02:27 UTC], ["updated_at", 2017-03-22 22:02:27 UTC]] +  (0.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 1.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:02:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 27ms (Views: 21.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-22 15:02:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 36ms (Views: 33.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:06:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-22 15:06:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-22 15:07:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-22 15:07:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 44ms (Views: 41.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-22 15:07:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-22 15:07:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 42ms (Views: 38.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:07:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 40ms (Views: 38.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:07:33 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.4ms) +Completed 200 OK in 38ms (Views: 36.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:07:57 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.0ms) +Completed 200 OK in 45ms (Views: 43.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:07:57 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:08:44 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.2ms) +Completed 200 OK in 44ms (Views: 41.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:08:52 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 39ms (Views: 37.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:09:29 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.7ms) +Completed 200 OK in 37ms (Views: 34.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:10:03 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.2ms) +Completed 200 OK in 39ms (Views: 36.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:10:11 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.9ms) +Completed 200 OK in 38ms (Views: 34.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:10:30 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 42ms (Views: 40.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:12:28 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 48ms (Views: 45.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:12:45 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.6ms) +Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:13:10 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 39ms (Views: 37.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:13:23 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:13:37 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 29ms (Views: 27.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:13:54 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/tasks/new.html.erb:8: syntax error, unexpected ')' +ext_area :description, size: );@output_buffer.safe_append=' + ^ +/Users/addieland/ada/projects/TaskList/app/views/tasks/new.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/addieland/ada/projects/TaskList/app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/addieland/ada/projects/TaskList/app/views/tasks/new.html.erb:23: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/new.html.erb:8: syntax error, unexpected ')' +app/views/tasks/new.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/new.html.erb:21: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/new.html.erb:23: syntax error, unexpected keyword_end, expecting ')' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (66.3ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 15:14:01 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.7ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:14:21 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:15:10 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.4ms) +Completed 200 OK in 50ms (Views: 47.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:16:17 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.7ms) +Completed 200 OK in 44ms (Views: 41.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:16:29 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 45ms (Views: 43.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:18:09 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 42ms (Views: 38.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:22:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 41ms (Views: 38.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-22 15:22:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 39ms (Views: 36.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:22:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 53ms (Views: 49.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-22 15:23:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.8ms) +Completed 200 OK in 40ms (Views: 36.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:24:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 53ms (Views: 50.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:24:35 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.5ms) +Completed 200 OK in 57ms (Views: 54.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:25:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 45ms (Views: 42.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:25:04 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.8ms) +Completed 200 OK in 64ms (Views: 60.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:26:10 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 40ms (Views: 36.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:26:30 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 54ms (Views: 48.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:26:44 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (6.7ms) +Completed 200 OK in 50ms (Views: 48.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:27:00 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (5.2ms) +Completed 200 OK in 47ms (Views: 45.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:28:01 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 40ms (Views: 37.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:28:17 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.4ms) +Completed 200 OK in 38ms (Views: 36.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:28:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.9ms) +Completed 200 OK in 50ms (Views: 46.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:28:41 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.0ms) +Completed 200 OK in 38ms (Views: 35.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:28:51 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.7ms) +Completed 200 OK in 41ms (Views: 39.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:29:03 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 38ms (Views: 36.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:32:04 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.9ms) +Completed 200 OK in 42ms (Views: 40.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:32:11 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.9ms) +Completed 200 OK in 45ms (Views: 42.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:32:25 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.8ms) +Completed 200 OK in 49ms (Views: 47.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:33:54 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.2ms) +Completed 200 OK in 38ms (Views: 36.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:34:14 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.4ms) +Completed 200 OK in 41ms (Views: 38.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:35:05 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 47ms (Views: 44.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:35:15 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.6ms) +Completed 200 OK in 46ms (Views: 44.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:35:22 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.2ms) +Completed 200 OK in 38ms (Views: 36.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:35:36 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.7ms) +Completed 200 OK in 30ms (Views: 25.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:35:41 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.9ms) +Completed 200 OK in 41ms (Views: 39.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:36:22 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.7ms) +Completed 200 OK in 51ms (Views: 48.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:36:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.6ms) +Completed 200 OK in 41ms (Views: 38.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:37:47 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (6.6ms) +Completed 200 OK in 50ms (Views: 48.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:38:00 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 40ms (Views: 38.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:38:49 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (5.6ms) +Completed 200 OK in 51ms (Views: 49.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:39:09 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (5.4ms) +Completed 200 OK in 42ms (Views: 40.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:39:23 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 42ms (Views: 40.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:40:31 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.2ms) +Completed 200 OK in 44ms (Views: 42.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:42:00 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.6ms) +Completed 200 OK in 51ms (Views: 49.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:42:17 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.7ms) +Completed 200 OK in 531ms (Views: 528.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:42:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.8ms) +Completed 200 OK in 47ms (Views: 44.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:42:37 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 48ms (Views: 46.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:42:49 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.6ms) +Completed 200 OK in 55ms (Views: 52.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:43:04 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 41ms (Views: 39.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:45:10 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.1ms) +Completed 200 OK in 44ms (Views: 42.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:45:22 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.3ms) +Completed 200 OK in 46ms (Views: 44.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:47:40 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.1ms) +Completed 200 OK in 50ms (Views: 48.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:47:46 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (5.4ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:48:31 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.8ms) +Completed 200 OK in 44ms (Views: 42.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:48:39 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.1ms) +Completed 200 OK in 43ms (Views: 41.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:48:52 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 53ms (Views: 51.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:54:35 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 54ms (Views: 39.2ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:54:46 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 53ms (Views: 51.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:55:02 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.7ms) +Completed 200 OK in 45ms (Views: 42.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:55:23 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (10.3ms) +Completed 200 OK in 56ms (Views: 51.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:55:49 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.1ms) +Completed 200 OK in 40ms (Views: 37.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:56:04 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 44ms (Views: 40.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:56:31 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.5ms) +Completed 200 OK in 51ms (Views: 49.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:57:02 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.2ms) +Completed 200 OK in 38ms (Views: 36.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:57:18 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.9ms) +Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 15:57:31 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"OABBofvuzvdj3dWMrrAbZnORowcU4nSDXprNBHIkiW3FXDowlDm218oyyKa5Du+w7zQoOCAmNuMsXHVxVpBRXQ==", "task"=>{"name"=>"", "description"=>"", "deadline"=>"", "completed"=>"0"}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", ""], ["description", ""], ["completed", false], ["created_at", 2017-03-22 22:57:31 UTC], ["updated_at", 2017-03-22 22:57:31 UTC]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:57:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 31ms (Views: 27.1ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:00:46 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.6ms) +Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:00:56 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (7.6ms) +Completed 200 OK in 50ms (Views: 47.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:02:18 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.0ms) +Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:02:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 56ms (Views: 54.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:02:42 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 51ms (Views: 46.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:02:48 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:03:14 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 39ms (Views: 36.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:03:21 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 46ms (Views: 44.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:03:35 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 53ms (Views: 49.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:03:52 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.3ms) +Completed 200 OK in 43ms (Views: 39.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:04:10 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (7.7ms) +Completed 200 OK in 71ms (Views: 65.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:04:17 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 46ms (Views: 42.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:04:40 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.4ms) +Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:05:19 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:05:58 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.0ms) +Completed 200 OK in 54ms (Views: 52.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:06:06 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:07:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 49ms (Views: 46.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:08:39 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.8ms) +Completed 200 OK in 40ms (Views: 38.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:09:02 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 43ms (Views: 40.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:09:16 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.9ms) +Completed 200 OK in 45ms (Views: 43.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:09:24 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 41ms (Views: 37.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:09:33 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.9ms) +Completed 200 OK in 45ms (Views: 43.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:09:41 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.3ms) +Completed 200 OK in 51ms (Views: 47.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:09:53 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (10.5ms) +Completed 200 OK in 51ms (Views: 48.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:11:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 43ms (Views: 40.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/0" for ::1 at 2017-03-22 16:11:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"0"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=0): + +app/controllers/tasks_controller.rb:7:in `show' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.0ms) +Started GET "/tasks/1" for ::1 at 2017-03-22 16:11:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-22 16:11:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/9" for ::1 at 2017-03-22 16:11:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/9/edit" for ::1 at 2017-03-22 16:11:56 -0700 + +AbstractController::ActionNotFound (The action 'edit' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.6ms) +Started GET "/tasks/9/edit" for ::1 at 2017-03-22 16:13:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} +Completed 406 Not Acceptable in 47ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat (TasksController#edit is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.): + +actionpack (5.0.2) lib/action_controller/metal/implicit_render.rb:56:in `default_render' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' +activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' +activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' +activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' +activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.0ms) +Started GET "/tasks/9/edit" for ::1 at 2017-03-22 16:15:37 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} +Completed 406 Not Acceptable in 49ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat (TasksController#edit is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.): + +actionpack (5.0.2) lib/action_controller/metal/implicit_render.rb:56:in `default_render' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' +activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' +activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' +activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' +activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.1ms) +Started GET "/tasks/9/edit" for ::1 at 2017-03-22 16:15:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} +Completed 406 Not Acceptable in 50ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat (TasksController#edit is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.): + +actionpack (5.0.2) lib/action_controller/metal/implicit_render.rb:56:in `default_render' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' +activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' +activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' +activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' +activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.2ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.1ms) +Started GET "/tasks/9/edit" for ::1 at 2017-03-22 16:16:24 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/9/edit" for ::1 at 2017-03-22 16:16:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.3ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `name' for nil:NilClass): + 1:

Edit <%= @task.name %>

+ +app/views/tasks/edit.html.erb:1:in `_app_views_tasks_edit_html_erb___1111707259966031573_70341381540480' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (64.6ms) +Started GET "/tasks/9/edit" for ::1 at 2017-03-22 16:17:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.4ms) +Completed 200 OK in 30ms (Views: 14.8ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/8/edit" for ::1 at 2017-03-22 16:17:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.5ms) +Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8/edit" for ::1 at 2017-03-22 16:19:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-22 16:19:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 41ms (Views: 38.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:19:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 53ms (Views: 50.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:19:05 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 43ms (Views: 40.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-22 16:19:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 40ms (Views: 37.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-22 16:20:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8/edit" for ::1 at 2017-03-22 16:20:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.6ms) +Completed 200 OK in 35ms (Views: 32.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-22 16:32:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 56ms (Views: 28.7ms | ActiveRecord: 1.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:32:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 42ms (Views: 39.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-22 16:32:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 41ms (Views: 38.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-22 16:40:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.8ms) +Completed 200 OK in 72ms (Views: 69.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-22 16:40:56 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.4ms) +Completed 200 OK in 62ms (Views: 58.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-22 16:40:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 51ms (Views: 47.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:40:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 50ms (Views: 47.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:41:05 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.1ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:45:21 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:45:44 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:46:07 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:47:03 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.6ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/layouts/application.html.erb:13: syntax error, unexpected tIDENTIFIER, expecting ')' +"Tasks Tasks Tasks!" root_path + ^ +/Users/addieland/ada/projects/TaskList/app/views/layouts/application.html.erb:14: unknown regexp options - hadr +/Users/addieland/ada/projects/TaskList/app/views/layouts/application.html.erb:15: syntax error, unexpected '<' + <%= yield );@output_buffer.safe + ^ +/Users/addieland/ada/projects/TaskList/app/views/layouts/application.html.erb:24: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/addieland/ada/projects/TaskList/app/views/layouts/application.html.erb:26: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/layouts/application.html.erb:13: syntax error, unexpected tIDENTIFIER, expecting ')' +app/views/layouts/application.html.erb:14: unknown regexp options - hadr +app/views/layouts/application.html.erb:15: syntax error, unexpected '<' +app/views/layouts/application.html.erb:24: syntax error, unexpected keyword_ensure, expecting ')' +app/views/layouts/application.html.erb:26: syntax error, unexpected keyword_end, expecting ')' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.6ms) +Started GET "/tasks" for ::1 at 2017-03-22 16:47:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/layouts/application.html.erb:14: unknown regexp options - hadr +/Users/addieland/ada/projects/TaskList/app/views/layouts/application.html.erb:15: syntax error, unexpected '<' + <%= yield );@output_buffer.safe + ^ +/Users/addieland/ada/projects/TaskList/app/views/layouts/application.html.erb:24: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/addieland/ada/projects/TaskList/app/views/layouts/application.html.erb:26: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/layouts/application.html.erb:14: unknown regexp options - hadr +app/views/layouts/application.html.erb:15: syntax error, unexpected '<' +app/views/layouts/application.html.erb:24: syntax error, unexpected keyword_ensure, expecting ')' +app/views/layouts/application.html.erb:26: syntax error, unexpected keyword_end, expecting ')' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.5ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.6ms) +Started GET "/tasks" for ::1 at 2017-03-22 16:47:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-22 16:47:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 46ms (Views: 43.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-22 16:47:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 42ms (Views: 39.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-22 16:47:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 53ms (Views: 49.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-22 16:47:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 37ms (Views: 34.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-22 16:47:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 51ms (Views: 47.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2017-03-22 16:48:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-22 16:48:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 42ms (Views: 38.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-22 16:54:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 56ms (Views: 53.0ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2017-03-22 16:57:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 43ms (Views: 41.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-22 16:57:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 46ms (Views: 43.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-22 16:57:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 49ms (Views: 47.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-22 16:57:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 47ms (Views: 43.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2017-03-22 16:57:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 45ms (Views: 43.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-22 16:58:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 49ms (Views: 47.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2017-03-23 14:35:39 -0700 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.2ms) +Completed 200 OK in 265ms (Views: 246.9ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-23 14:46:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (3.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 47ms (Views: 37.3ms | ActiveRecord: 3.5ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-23 14:46:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (19.8ms) +Completed 200 OK in 41ms (Views: 37.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-23 14:46:55 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/1"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (2.1ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.8ms) +Started GET "/tasks/1/edit" for ::1 at 2017-03-23 14:47:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 34ms (Views: 32.0ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/1" for ::1 at 2017-03-23 14:47:35 -0700 + +ActionController::RoutingError (No route matches [PUT] "/tasks/1"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (1.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (75.8ms) +Started GET "/tasks/1/edit" for ::1 at 2017-03-23 14:48:03 -0700 +Processing by TasksController#edit as HTML +Started PUT "/tasks/1" for ::1 at 2017-03-23 14:48:13 -0700 + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.8ms) +Completed 200 OK in 29ms (Views: 17.3ms | ActiveRecord: 0.6ms) + + + +AbstractController::ActionNotFound (The action 'update' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.5ms) +Started GET "/tasks/1/edit" for ::1 at 2017-03-23 14:49:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.0ms) +Completed 200 OK in 36ms (Views: 23.3ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-23 14:49:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.6ms) +Completed 200 OK in 24ms (Views: 21.1ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/1" for ::1 at 2017-03-23 14:49:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qqbOnDpCytND9CYqfWCqReAwB39+Vs+uXIM33ETlv75X+rUNVZWy8+obOwBq3l6TfJWMQEqSjc4uRY+pYFFnjg==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME", "deadline"=>"2017-03-25", "completed"=>"0"}, "commit"=>"Add Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + + + +NoMethodError (undefined method `author=' for #): + +app/controllers/tasks_controller.rb:27:in `update' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.7ms) +Started GET "/tasks/1/edit" for ::1 at 2017-03-23 14:50:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.7ms) +Completed 200 OK in 36ms (Views: 24.2ms | ActiveRecord: 0.6ms) + + +Started PUT "/tasks/1" for ::1 at 2017-03-23 14:50:15 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"dDoO59vZvtYpdY+FKELFKBuo8lmUKHILiuK6GcW084CJZnV2tA7G9oCakq8//DH+hw15ZqDsMGv4JAJs4QArsA==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME", "deadline"=>"2017-03-25", "completed"=>"0"}, "commit"=>"Add Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "description" = ?, "deadline" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Get them dishes washed! WASH ME"], ["deadline", 2017-03-25 00:00:00 UTC], ["updated_at", 2017-03-23 21:50:15 UTC], ["id", 1]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 10ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-23 14:50:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 20ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-23 14:50:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (4.7ms) +Completed 200 OK in 38ms (Views: 35.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-23 14:50:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 40ms (Views: 36.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-23 14:50:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 49ms (Views: 45.7ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-23 14:50:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 41ms (Views: 38.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 09:15:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.0ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (15.1ms) +Completed 200 OK in 67ms (Views: 57.4ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-24 09:15:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.1ms) +Completed 200 OK in 58ms (Views: 50.3ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/5/edit" for ::1 at 2017-03-24 09:15:18 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (43.8ms) +Completed 200 OK in 74ms (Views: 66.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-24 09:15:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 43ms (Views: 39.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-24 13:07:10 -0700 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.3ms) +Completed 200 OK in 235ms (Views: 215.0ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/4" for ::1 at 2017-03-24 13:07:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 29ms (Views: 15.3ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/4/edit" for ::1 at 2017-03-24 13:08:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (31.0ms) +Completed 200 OK in 52ms (Views: 48.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/4" for ::1 at 2017-03-24 13:08:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"cuWz8LzGqkqrOT59zZ0qWmf1DiVv++49DH+53u6hBhRBl3FUG6o5YCRiCDiNlvhoxPsdnWKbYLwUubdm5ok46w==", "task"=>{"name"=>"HI", "description"=>"asd;lk", "deadline"=>"2017-03-16", "completed"=>"0"}, "commit"=>"Add Task", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "name" = ?, "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["name", "HI"], ["completed", false], ["updated_at", 2017-03-24 20:08:26 UTC], ["id", 4]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks/4 +Completed 302 Found in 6ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/4" for ::1 at 2017-03-24 13:08:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 13:08:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 47ms (Views: 45.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/7" for ::1 at 2017-03-24 13:08:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/7/edit" for ::1 at 2017-03-24 13:08:42 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.8ms) +Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-24 13:08:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 33ms (Views: 30.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-24 13:08:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.4ms) +Completed 200 OK in 36ms (Views: 33.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/" for ::1 at 2017-03-24 14:05:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 29ms (Views: 23.2ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-24 14:05:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/tasks/show.html.erb:18: syntax error, unexpected ':', expecting ')' + data: { confirm: "Are you sure you + ^ +/Users/addieland/ada/projects/TaskList/app/views/tasks/show.html.erb:18: syntax error, unexpected ',', expecting ')' + want to delete this task?" }, + ^): + +app/views/tasks/show.html.erb:18: syntax error, unexpected ':', expecting ')' +app/views/tasks/show.html.erb:18: syntax error, unexpected ',', expecting ')' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.5ms) +Started GET "/tasks/" for ::1 at 2017-03-24 14:06:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/" for ::1 at 2017-03-24 14:06:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-24 14:06:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 32ms (Views: 29.1ms | ActiveRecord: 0.4ms) + + +Started DELETE "/books/8" for ::1 at 2017-03-24 14:06:08 -0700 + +ActionController::RoutingError (uninitialized constant BooksController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [8 times] (2.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.5ms) +Started GET "/tasks/8" for ::1 at 2017-03-24 14:07:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 33ms (Views: 22.0ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/" for ::1 at 2017-03-24 14:07:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 48ms (Views: 45.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-24 14:07:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 40ms (Views: 36.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/8" for ::1 at 2017-03-24 14:07:40 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"GuOfiP2opjD0jsGSo96+/JNqWusQ7AZQnysC7Tf55yPnv+QZkn/eEF1h3Li0YEoqD8/R1CQoRDDt7bqYE00/Ew==", "id"=>"8"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (1.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 8]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:07:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9" for ::1 at 2017-03-24 14:07:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/9" for ::1 at 2017-03-24 14:07:55 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"vvBr9+cYwpeUkFtzGWgAnWX2KY+BphJGDKewLktPKvtDrBBmiM+6tz1/RlkO1vRL+VOisLViUCZ+YQhbb/vyyw==", "id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 9]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:07:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/4" for ::1 at 2017-03-24 14:07:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 39ms (Views: 36.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/4" for ::1 at 2017-03-24 14:08:01 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"ATYh/gkuQs0RZCVJsyEvyqlApWGZ8TmwSnDwTdzNAPT8alpvZvk67biLOGOkn9scNeUuXq01e9A4tkg4+HnYxA==", "id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 4]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:08:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/7" for ::1 at 2017-03-24 14:17:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 42ms (Views: 39.5ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/7" for ::1 at 2017-03-24 14:17:39 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"zduv1qvTDNlLQFY4gvkuGBx2Nc8qm/6Yt983fjqxYK0wh9RHxAR0+eKvSxKVR9rOgNO+8B5fvPjFGY8LHgW4nQ==", "id"=>"7"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 7]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:17:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-24 14:17:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 35ms (Views: 32.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-24 14:18:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 37ms (Views: 33.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:22:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/tasks/index.html.erb:10: syntax error, unexpected tIDENTIFIER, expecting ')' + completed" complete_task_path, class: "complete_button" );@ + ^): + +app/views/tasks/index.html.erb:10: syntax error, unexpected tIDENTIFIER, expecting ')' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.9ms) +Started GET "/tasks" for ::1 at 2017-03-24 14:24:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/tasks/index.html.erb:10: syntax error, unexpected tIDENTIFIER, expecting ')' + completed" complete_task_path, class: "complete_button" );@ + ^): + +app/views/tasks/index.html.erb:10: syntax error, unexpected tIDENTIFIER, expecting ')' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.6ms) +Started GET "/tasks" for ::1 at 2017-03-24 14:27:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/tasks/index.html.erb:10: syntax error, unexpected tIDENTIFIER, expecting ')' + completed" complete_task_path(task.id), class: "complete_bu + ^ +/Users/addieland/ada/projects/TaskList/app/views/tasks/index.html.erb:10: syntax error, unexpected ',', expecting ')' +" complete_task_path(task.id), class: "complete_button" );@o + ^): + +app/views/tasks/index.html.erb:10: syntax error, unexpected tIDENTIFIER, expecting ')' +app/views/tasks/index.html.erb:10: syntax error, unexpected ',', expecting ')' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.5ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.3ms) +Started GET "/tasks" for ::1 at 2017-03-24 14:27:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.3ms) +Completed 200 OK in 32ms (Views: 29.0ms | ActiveRecord: 1.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-24 14:27:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 35ms (Views: 32.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:28:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-24 14:28:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"syM2FMuvUGxYXTE/WG5QS1sNev6zJZPmW9E8WkIOAxJOf02FpHgoTPGyLBVP0KSdx6jxwYfh0YYpF4QvZrrbIg==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:44:in `task_params' +app/controllers/tasks_controller.rb:26:in `update' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.9ms) +Started GET "/tasks" for ::1 at 2017-03-24 14:29:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.9ms) +Completed 200 OK in 37ms (Views: 30.8ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-24 14:30:00 -0700 + +AbstractController::ActionNotFound (The action 'mark_complete' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms) +Started GET "/tasks/" for ::1 at 2017-03-24 14:31:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 14:31:45 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.8ms) +Completed 200 OK in 40ms (Views: 38.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:31:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 53ms (Views: 50.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-24 14:31:59 -0700 + +AbstractController::ActionNotFound (The action 'mark_complete' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms) +Started GET "/tasks" for ::1 at 2017-03-24 14:34:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 32ms (Views: 25.6ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-24 14:34:29 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"RuyAS7vqyD3/+fCO0RW4cDnZ2MdwdEpR9wiht3njKZG7sPva1D2wHVYW7aTGq0ympXxT+ESwCDGFzhnCXVfxoQ==", "id"=>"1"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 53ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:35:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 30ms (Views: 22.5ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-24 14:35:32 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"s9NjDEfGkLJRbtlXiWqJBSMe09+xMjzH4I0wqIujjL9OjxidKBHokviBxH2e1H3Tv7tY4IX2fqeSS4jdrxdUjw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 49ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:35:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:35:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:38:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 31ms (Views: 22.8ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:38:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.7ms) +Completed 200 OK in 29ms (Views: 23.2ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-24 14:38:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 43ms (Views: 39.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-24 14:38:35 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"rKuiWX3HKFzNI9ol7wzKHusDV2WYTj72X2NgAROqm+FR99nIEhBQfGTMxw/4sj7Id6bcWqyKfJYtpdh0Nx5D0Q==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:38:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:41:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6" for ::1 at 2017-03-24 14:41:21 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"8VjgX0REgMDpFzczXNEpmBENFu+i6BAyzceUvRoM2lUMBJvOK5P44ED4KhlLb91Ojaid0JYsUlK/ASzIPrgCZQ==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks +Completed 302 Found in 2ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:41:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:41:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:41:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:42:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.5ms) +Completed 200 OK in 41ms (Views: 32.0ms | ActiveRecord: 1.0ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-24 14:42:38 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"dVA25hTgghScFFPwWLfLGkE0EnFpnsk7P+nbYa3AMDKIDE13ezf6NDX7TtpPCT/M3ZGZTl1ai1tNL2MUiXToAg==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", true], ["updated_at", 2017-03-24 21:42:38 UTC], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:42:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 22ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3" for ::1 at 2017-03-24 14:42:39 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"F+8u6VIy4oSJfWtRsDlhebl6yy/BWAHvWGN2oFQddPnqs1V4PeWapCCSdnunh5WvJd9AEPWcQ48qpc7VcKmsyQ==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", true], ["updated_at", 2017-03-24 21:42:39 UTC], ["id", 3]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:42:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6" for ::1 at 2017-03-24 14:42:40 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"Iw68M9TIY4mSUa/dV034Xot2yFvLmzq45sM8H3zuOSLeUseiux8bqTu+svdA8wyIF9NDZP9feNiUBYRqWFrhEg==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", true], ["updated_at", 2017-03-24 21:42:40 UTC], ["id", 6]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:42:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 14:43:08 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.0ms) +Completed 200 OK in 38ms (Views: 36.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:43:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 52ms (Views: 48.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 14:43:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 45ms (Views: 42.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-24 14:43:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (4.7ms) +Completed 200 OK in 50ms (Views: 47.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3" for ::1 at 2017-03-24 14:43:15 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"S/lfV3hWTQLzBFw89LjtZoCAIfXXOZNVxtwt6xReXgzYjnCRsgepdVcuP94qxhyNHqHFl42gMcQcZWb0Ysn5TQ==", "task"=>{"name"=>"Make dinner", "description"=>"Food is good!", "deadline"=>"2017-03-22", "completed"=>"0"}, "commit"=>"Edit Task", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:43:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 35ms (Views: 31.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:43:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:43:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-24 14:43:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 38ms (Views: 35.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/" for ::1 at 2017-03-24 14:43:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 14:43:29 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (5.3ms) +Completed 200 OK in 55ms (Views: 53.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 14:43:33 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"AbPFq8C10iVd0A4IW+dzTRNhfRpqn5sid8i55Yj5IaI4rZ2C0RKubZ5sa5KHg0FE62XbXUr8ou8hSq7MEbV+zA==", "task"=>{"name"=>"alsdkj", "description"=>"a;lsdkjf", "deadline"=>"", "completed"=>"0"}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "alsdkj"], ["description", "a;lsdkjf"], ["completed", false], ["created_at", 2017-03-24 21:43:33 UTC], ["updated_at", 2017-03-24 21:43:33 UTC]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:43:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/10" for ::1 at 2017-03-24 14:43:35 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"09hVBdqNhoM/3OfQP5kURI7QOuwumePY0//qQCkINQQuhC6UtVr+o5Yz+vooJ+CSEnWx0xpdobihOVI1DbztNA==", "id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", true], ["updated_at", 2017-03-24 21:43:35 UTC], ["id", 10]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:43:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 14:44:05 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 39ms (Views: 37.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 14:44:08 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"8HIodeEDQfT3MORnerPgeEHAVcmujl+WrZPNxKQY5r3JbHBc8KQ9vDSMgf2m19JxucTzjo7tZlv7EdrtPVS50w==", "task"=>{"name"=>"asdlkfjas", "description"=>"asldkjasd", "deadline"=>"", "completed"=>"0"}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "asdlkfjas"], ["description", "asldkjasd"], ["completed", false], ["created_at", 2017-03-24 21:44:08 UTC], ["updated_at", 2017-03-24 21:44:08 UTC]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:44:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11" for ::1 at 2017-03-24 14:44:15 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"qQ4ONg20S/xEi9SqsgZSmktsH4NFxFk9RYZiIpQp299UUnWnYmMz3O1kyYCluKZM18mUvHEAG103QNpXsJ0D7w==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", true], ["updated_at", 2017-03-24 21:44:15 UTC], ["id", 11]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:44:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 37ms (Views: 34.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 14:44:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 44ms (Views: 41.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-24 14:44:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.7ms) +Completed 200 OK in 44ms (Views: 41.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3" for ::1 at 2017-03-24 14:44:48 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"y+HTZ4RzGVVIiMa2RCYxyZyaqfkOBMTSBNvRGKAa4eJYlvyhTiL9IuyipVSaWMAiArtNm1SdZkPeYpoH1o1Gow==", "task"=>{"name"=>"Make dinner LALAL", "description"=>"Food is good!", "deadline"=>"2017-03-22", "completed"=>"1"}, "commit"=>"Edit Task", "id"=>"3"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 0.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:44:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:45:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 35ms (Views: 29.4ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 14:45:49 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.0ms) +Completed 200 OK in 48ms (Views: 45.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 14:45:53 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sCt2cPwTZ1V1qRomRCO1UYLubnI9qBtV43Y0icrHITiJNS5Z7bQbHbYVf7yYR4dYeurINR3LIpi19COgU4t+Vg==", "task"=>{"name"=>"asdf", "description"=>"asdf", "deadline"=>"", "completed"=>"0"}, "commit"=>"Add Task"} +  (0.2ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "asdf"], ["description", "asdf"], ["completed", false], ["created_at", 2017-03-24 21:45:53 UTC], ["updated_at", 2017-03-24 21:45:53 UTC]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:45:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12" for ::1 at 2017-03-24 14:45:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"f9dxwuhDNzc8u67QIv46veZOtcgrqpF5LvcISIj6Zn6CiwpTh5RPF5VUs/o1QM5reus+9x9u0xlcMbA9rE6+Tg==", "id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.2ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:52:in `task_params' +app/controllers/tasks_controller.rb:26:in `update' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (73.0ms) +Started GET "/tasks" for ::1 at 2017-03-24 14:46:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.7ms) +Completed 200 OK in 35ms (Views: 25.1ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 14:46:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 40ms (Views: 36.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-24 14:46:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.9ms) +Completed 200 OK in 41ms (Views: 38.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-24 14:46:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-24 14:47:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 51ms (Views: 48.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/12/edit" for ::1 at 2017-03-24 14:47:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (4.1ms) +Completed 200 OK in 42ms (Views: 37.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12" for ::1 at 2017-03-24 14:47:05 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"klo8n6zJTQ3uhzJ66crf2ZHb88sluyfpEJzI5MC4fo3eSLjZCw46JtCHqwYT7wCS5Y2Sg3a0gNAaOvxKITCm2Q==", "task"=>{"name"=>"asdf", "description"=>"asdf", "deadline"=>"", "completed"=>"0"}, "commit"=>"Edit Task", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", true], ["updated_at", 2017-03-24 21:47:05 UTC], ["id", 12]] +  (7.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 12ms (ActiveRecord: 7.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:47:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:48:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 33ms (Views: 26.1ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 14:48:06 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.6ms) +Completed 200 OK in 41ms (Views: 39.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 14:48:08 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"bzNvcuO6ZE5r2Qw8t5B93Tda4CZHGC5NcdGhqa+a9JFWLTdb8h0YBqhlaaZr9E/Uz15GYWd7F4AnU7aANtar/w==", "task"=>{"name"=>"asd", "description"=>"asdf", "deadline"=>"", "completed"=>"0"}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "asd"], ["description", "asdf"], ["completed", false], ["created_at", 2017-03-24 21:48:08 UTC], ["updated_at", 2017-03-24 21:48:08 UTC]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 1.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:48:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 34ms (Views: 31.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/complete" for ::1 at 2017-03-24 14:48:10 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"dtuqPZtBz7gEtoetBb78xr4yw2ugdrf8kb8bbR1JErmLh9Gs9Ja3mK1ZmocSAAgQIpdIVJSy9ZzjeaMYOf3KiQ==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", true], ["updated_at", 2017-03-24 21:48:10 UTC], ["id", 13]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:48:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-24 14:48:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 41ms (Views: 38.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13/edit" for ::1 at 2017-03-24 14:48:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.9ms) +Completed 200 OK in 39ms (Views: 36.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/13" for ::1 at 2017-03-24 14:48:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"CURc9EAMTNGyZTdf9xM6a/ZF3/rPglnj/PsJoQ7yxlFg1usmShC/SznxV5TCBPVor602e7fThx+VyCH3DMoA9w==", "task"=>{"name"=>"asd", "description"=>"asdf", "deadline"=>"", "completed"=>"0"}, "commit"=>"Edit Task", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", false], ["updated_at", 2017-03-24 21:48:17 UTC], ["id", 13]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks/13 +Completed 302 Found in 10ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-24 14:48:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 34ms (Views: 30.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:48:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 51ms (Views: 49.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:54:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/13/complete" for ::1 at 2017-03-24 14:54:40 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"Vzz+Egx34cjGb3aZ9iP8fm5H+sMjbeE0SeOdYn6zl+yqYIWDY6CZ6G+Aa7PhnQio8uJx/Bepo1Q7JSUXWgdP3A==", "id"=>"13"} + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", true], ["updated_at", 2017-03-24 21:54:40 UTC], ["id", 13]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:54:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 25ms (Views: 21.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 14:59:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 36ms (Views: 33.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 14:59:35 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.6ms) +Completed 200 OK in 37ms (Views: 35.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:02:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 47ms (Views: 43.4ms | ActiveRecord: 0.2ms) + + + Task Load (1.8ms) SELECT "tasks".* FROM "tasks" +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to ChangeTasksCompletedCol (20170324221739) +  (0.1ms) begin transaction +  (0.3ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "deadline" datetime, "completed" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "atasks" ("id","name","description","deadline","completed","created_at","updated_at") + SELECT "id","name","description","deadline","completed","created_at","updated_at" FROM "tasks" +  (0.6ms) DROP TABLE "tasks" +  (0.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "deadline" datetime, "completed" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "tasks" ("id","name","description","deadline","completed","created_at","updated_at") + SELECT "id","name","description","deadline","completed","created_at","updated_at" FROM "atasks" +  (0.1ms) DROP TABLE "atasks" + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170324221739"]] +  (0.7ms) commit transaction + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + Task Load (1.5ms) SELECT "tasks".* FROM "tasks" +Started GET "/tasks" for ::1 at 2017-03-24 15:22:09 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 29ms (Views: 23.4ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-24 15:22:11 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"JaF+cY44/S3wixRWVLghy4mlps6YKK7bItJSaUAactnY/QXg4e+FDVlkCXxDBtUdFQAt8azs7LtQFOocZK6q6Q==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-24 22:22:11 UTC], ["updated_at", 2017-03-24 22:22:11 UTC], ["id", 1]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:22:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/complete" for ::1 at 2017-03-24 15:22:15 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"EWql0c19c+sh/gZwh6slY4CRTfjA8eqLhJdOBG3pheXsNt5AoqoLy4gRG1qQFdG1HDTGx/Q1qOv2UfZxSV1d1Q==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-24 22:22:15 UTC], ["updated_at", 2017-03-24 22:22:15 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:22:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 27ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 15:22:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 40ms (Views: 35.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-24 15:22:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (6.4ms) +Completed 200 OK in 49ms (Views: 44.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 15:22:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.1ms) +Completed 200 OK in 48ms (Views: 44.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 15:22:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 46ms (Views: 42.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:24:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 15:24:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 51ms (Views: 48.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-24 15:24:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (4.8ms) +Completed 200 OK in 48ms (Views: 45.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3" for ::1 at 2017-03-24 15:24:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"q71jkvrd4JZEcz/9n4xIppt1MN5eqXbQFtdFLtYUjc84ykxUMIwE4eBZXB9B8rlNBVTUvAQw1EHMbg4xoIMqjg==", "task"=>{"name"=>"Make dinner", "description"=>"Food is good!", "deadline"=>"2017-03-22", "completed"=>"2017-03-01"}, "commit"=>"Edit Task", "id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "deadline" = ?, "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", 2017-03-22 00:00:00 UTC], ["completed", 2017-03-01 00:00:00 UTC], ["updated_at", 2017-03-24 22:24:50 UTC], ["id", 3]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks/3 +Completed 302 Found in 8ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 15:24:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 35ms (Views: 31.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:24:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 51ms (Views: 48.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:27:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 42ms (Views: 39.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/complete" for ::1 at 2017-03-24 15:27:04 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"MH5OwQwu5aGKXkgUto17BAO4r/4z6um90DY5OjfxSp3NIjVQY/mdgSOxVT6hM4/Snx0kwQcuq92i8IFPE0WSrQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-24 22:27:04 UTC], ["updated_at", 2017-03-24 22:27:04 UTC], ["id", 11]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:27:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.0ms) +Completed 200 OK in 31ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-24 15:27:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 36ms (Views: 32.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/11/edit" for ::1 at 2017-03-24 15:27:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (6.6ms) +Completed 200 OK in 49ms (Views: 45.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11" for ::1 at 2017-03-24 15:27:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"at2A3CP1qwuXlS+3Bcty7VnA7iiyu+Q1wab1cmGIozhoiqcc2eQUq+hlghXWuWMC5Ab+Qom2sNakyDSd3lVIQw==", "task"=>{"name"=>"asdlkfjas", "description"=>"asldkjasd", "deadline"=>"", "completed"=>"1"}, "commit"=>"Edit Task", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-24 22:27:13 UTC], ["id", 11]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks/11 +Completed 302 Found in 10ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-24 15:27:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/11/edit" for ::1 at 2017-03-24 15:27:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.2ms) +Completed 200 OK in 42ms (Views: 39.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/11" for ::1 at 2017-03-24 15:27:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"xlJk3GRLeHTX2o9iN0oERyOZAZUxNS0H78gV4hoxuGHEBUMcnlrH1KgqIsDkOBWonl8R/wo4eeSKptQNpexTGg==", "task"=>{"name"=>"asdlkfjas", "description"=>"asldkjasd", "deadline"=>"", "completed"=>"1"}, "commit"=>"Edit Task", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks/11 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-24 15:27:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/11/edit" for ::1 at 2017-03-24 15:27:18 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (5.7ms) +Completed 200 OK in 60ms (Views: 56.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11" for ::1 at 2017-03-24 15:27:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"w7lm0qSOb3uFltLfj/yBcUbsIhs2AjYPDAV+U7JcxOzB7kESXp/Q2/pmf31cjpCe+yoycQ0PYuxpa7+8DYEvlw==", "task"=>{"name"=>"asdlkfjas LA", "description"=>"asldkjasd", "deadline"=>"", "completed"=>"0"}, "commit"=>"Edit Task", "id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "name" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["name", "asdlkfjas LA"], ["updated_at", 2017-03-24 22:27:20 UTC], ["id", 11]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/11 +Completed 302 Found in 10ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-24 15:27:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/11/edit" for ::1 at 2017-03-24 15:27:23 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.3ms) +Completed 200 OK in 39ms (Views: 36.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/11" for ::1 at 2017-03-24 15:27:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"tr5TDR1v1ouH1rTm/SkXRutqvg2YUonKAvGFu1BgVCC06XTN535pK/gmGUQuWwapVqyuZ6Nf3Slnn0RU772/Ww==", "task"=>{"name"=>"asdlkfjas LA", "description"=>"asldkjasd", "deadline"=>"", "completed"=>"0"}, "commit"=>"Edit Task", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks/11 +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-24 15:27:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/11/edit" for ::1 at 2017-03-24 15:28:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.2ms) +Completed 200 OK in 44ms (Views: 40.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-24 15:28:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 42ms (Views: 38.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-24 15:28:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 50ms (Views: 47.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2017-03-24 15:32:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 30ms (Views: 24.0ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 15:32:13 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"n862wFpBsVUN+gpl5kVzY/9sBtHweJbLXh0/5rq9Yl9iks1RNZbJdaQVF0/x+4e1Y8mN7sS81Kss24eTngm6bw==", "id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-24 22:32:13 UTC], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:32:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 15:32:16 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"tBSSeigY+XCtAjuF4OeFTWusKatJn75fkcTm9ua0bDtJSOnrR8+BUATtJq/3WXGb9wmilH1b/D/jAl6DwgC0Cw==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-24 22:32:16 UTC], ["updated_at", 2017-03-24 22:32:16 UTC], ["id", 2]] +  (3.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 4.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:32:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 15:32:17 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"1JWEHjiMfg2/VUiqkZyLIg3MJs0fG2Xs9XEJ7aCONc0pyf+PV1sGLRa6VYCGIn/0kWmt8ivfJ4yHt7GYhDrt/Q==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-24 22:32:17 UTC], ["id", 3]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:32:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 15:32:18 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"YtdkncnL6pgBIdQ9JOoVfPRVKQocwv8iIS5i/Wxcswqfix8MphySuKjOyRczVOGqaPCiNSgGvUJT6NqISOhrOg==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-24 22:32:18 UTC], ["updated_at", 2017-03-24 22:32:18 UTC], ["id", 3]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:32:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-24 15:32:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 38ms (Views: 34.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-24 15:32:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-24 15:34:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 37ms (Views: 35.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 15:34:50 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"EUgHY9KV7L4Y8aEBpWYoEnk6ysBauIHANzWevGywXfDsFHzyvUKUnrEevCuy2NzE5Z9B/258w6BF8ybJSASFwA==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-24 22:34:50 UTC], ["updated_at", 2017-03-24 22:34:50 UTC], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:34:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 15:34:54 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"Nt6v7yFP6WDTxw3MMcfvfoTcw2N8b8kwM3ge4647SEvLgtR+TpiRQHooEOYmeRuoGHlIXEiri1BBvqaWio+Qew==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-24 22:34:54 UTC], ["id", 1]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:34:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-24 15:36:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.7ms) +Completed 200 OK in 58ms (Views: 47.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/5/edit" for ::1 at 2017-03-24 15:36:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.9ms) +Completed 200 OK in 41ms (Views: 39.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-24 15:37:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-24 15:58:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 84ms (Views: 81.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-24 15:59:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 52ms (Views: 50.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-24 16:00:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 46ms (Views: 43.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-24 16:00:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 54ms (Views: 51.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-24 19:16:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (20.3ms) +Completed 200 OK in 94ms (Views: 81.4ms | ActiveRecord: 1.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 19:16:10 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ZnTVkgFFrWIKGzmDMeEAONgBFaxTAsfc00qSz0Aww++bKK4DbpLVQqP0JKkmX/TuRKSek2fGhbyhjCq6ZIQb3w==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (1.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 02:16:10 UTC], ["updated_at", 2017-03-25 02:16:10 UTC], ["id", 6]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 16ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:16:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 57ms (Views: 55.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 19:16:12 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"YjxJ4C3b8iLjTxdzdoo1woBvHsEOy1AbKgCpTGuIhdefYDJxQgyKAkqgCllhNMEUHMqV/joPEntYxhE5Tzxd5w==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 02:16:12 UTC], ["id", 6]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:16:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 32ms (Views: 28.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 19:16:13 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"1sNYCvdKsMUPRF/ifCikzcVsfBuFPH4U5YRK/DOnXUQrnyObmJ3I5aarQshrllAbWcn3JLH4PHSXQvKJFxOFdA==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 02:16:13 UTC], ["updated_at", 2017-03-25 02:16:13 UTC], ["id", 6]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:16:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 26ms (Views: 21.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 19:16:16 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"kPvjYceR1uV27O8Q8Q0umJBge4V7ongOkk5Hn3bwK+9tp5jwqEauxd8D8jrms9pODMXwuk9mOm7giP/qUkTz3w==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 02:16:16 UTC], ["id", 6]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:16:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 27ms (Views: 23.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-24 19:16:17 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"wq3sJAV7rmrlNoHH3WjAes45HAjLr1/k0lhXI2ThGNs/8Ze1aqzWSkzZnO3K1jSsUpyXN/9rHYSgnu9WQFXA6w==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 02:16:17 UTC], ["updated_at", 2017-03-25 02:16:17 UTC], ["id", 10]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:16:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 25ms (Views: 21.5ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-24 19:16:18 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"Anx2IpPDekrKKXtHpdQgCPAIPnTePkqN+rNKoHfoM23/IA2z/BQCamPGZm2yatTebK21S+r6CO2IdfLVU1zrXQ==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 02:16:18 UTC], ["id", 10]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:16:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 31ms (Views: 26.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:23:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (69.4ms) +Started PUT "/__web_console/repl_sessions/4a417e2011c23cc21ed09722ac489d6f" for ::1 at 2017-03-24 19:52:07 -0700 +Started PUT "/__web_console/repl_sessions/4a417e2011c23cc21ed09722ac489d6f" for ::1 at 2017-03-24 19:52:09 -0700 +Started GET "/tasks" for ::1 at 2017-03-24 19:56:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:57:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 62ms (Views: 58.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:58:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 60ms (Views: 58.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 19:59:20 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"++cL6j6nvHt7Z9jaGCILaUWR5fwpNIg9rF/EZkB5UJoGu3B7UXDEW9KIxfAPnP+/2TRuwx3wyl3emXwTZM2Iqg==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 02:59:20 UTC], ["id", 2]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 3.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:59:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 23ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-24 19:59:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (4.4ms) +Completed 200 OK in 39ms (Views: 36.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-24 19:59:30 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"/mjwYnJpVGFD6p+9/oQQxbIXFVA2B26KQHAOwe9MGJUDNIvzHb4sQeoFgpfpOuQTLrKebwLDLOoytra0y/jApQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.0ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 02:59:30 UTC], ["updated_at", 2017-03-25 02:59:30 UTC], ["id", 5]] +  (2.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 4.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:59:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 19:59:33 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"eNA/qSj8OjcZew1TvSQCzzteChv4Ym9ryqm7RyrZK1qFjEQ4RytCF7CUEHmqmvYZp/uBJMymLQu4bwMyDm3zag==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 02:59:33 UTC], ["updated_at", 2017-03-25 02:59:33 UTC], ["id", 6]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:59:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 24ms (Views: 21.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-24 19:59:35 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"k+KRmDo6Vc/HtF1hwy+Pw0ArT5H2SZb2OojIRISKeL5uvuoJVe0t725bQEvUkXsV3I7ErsKN1JZITnAxoD6gjg==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 02:59:35 UTC], ["updated_at", 2017-03-25 02:59:35 UTC], ["id", 10]] +  (3.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 4.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:59:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 34ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-24 19:59:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.8ms) +Completed 200 OK in 38ms (Views: 35.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:24:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/tasks/index.html.erb:30: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:30: syntax error, unexpected keyword_ensure, expecting end-of-input + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.2ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (67.2ms) +Started GET "/tasks" for ::1 at 2017-03-24 20:27:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 32ms (Views: 29.8ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:29:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 20:30:25 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"94ObDIoXWKf+l3lndiTOkmcpf/zsPoF5UzMPD4qBN2MK3+Cd5cAgh1d4ZE1hmjpE+4z0w9j6wxkh9bd6rjXvUw==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 03:30:25 UTC], ["id", 3]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:30:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-24 20:30:27 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"KN9MpZ7d4KhQ4dk1xzJFi9XS/7fskDLx0oOW9E5SVxXVgzc08QqYiPkOxB/QjLFdSXd0iNhUcJGgRS6BauaPJQ==", "id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.7ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 03:30:27 UTC], ["id", 5]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 4.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:30:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 20:30:27 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ooMgGnACyyUN4dh2leNFe79wewVN3Br/j7WwY2HywqFf31uLH9WzBaQOxVyCXbGtI9XwOnkYWJ/9cwgWRUYakQ==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 03:30:27 UTC], ["id", 6]] +  (3.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 11ms (ActiveRecord: 3.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:30:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-24 20:30:28 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"xSuju38gahxTON7cslK1EsoaH6OLClOH959nqT15sUY4d9gqEPcSPPrXw/al7EHEVr+UnL/OEeeFWd/cGc1pdg==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 03:30:28 UTC], ["id", 10]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:30:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 25ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 20:33:25 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"gMQYBm6mjywxfcDADRP1wNdbQVSs0pAi3qaaC3Og3219mGOXAXH3DJiS3eoarQEWS/7Ka5gW0kKsYCJ+VxQHXQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:33:25 UTC], ["updated_at", 2017-03-25 03:33:25 UTC], ["id", 1]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 20:33:27 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"npWPvxBqcUxeIt+6MZGVdLFZQndk1dsKJCNSRXLrwIRjyfQuf70JbPfNwpAmL2GiLfzJSFARmWpW5eowVl8YtA==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 03:33:27 UTC], ["id", 1]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 20:33:28 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"97i/uzMP3ktu/UdUqhzKm3YMpG2oddyvir7uqsmn/V4K5MQqXNima8cSWn69oj5N6qkvUpyxns/4eFbf7RMlbg==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:33:28 UTC], ["updated_at", 2017-03-25 03:33:28 UTC], ["id", 1]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 28ms (Views: 25.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 20:33:30 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"6oyP3qSmjJQ4CqJ/hwRRZE7kA4nGApoo3sxNbjmvy6UX0PRPy3H0tJHlv1WQuqWy0kGItvLG2EisCvUbHRsTlQ==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:33:30 UTC], ["updated_at", 2017-03-25 03:33:30 UTC], ["id", 2]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 4.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 20:33:32 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"s7LjusE3uQSmiZu1QWd6uTOF18DuRiwUdhLjB47s031O7pgrruDBJA9mhp9W2Y5vryBc/9qCbnQE1FtyqlgLTQ==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:33:32 UTC], ["updated_at", 2017-03-25 03:33:32 UTC], ["id", 3]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-24 20:33:34 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"IJV74KPsvXdHi9HDvjoDjZ5O+ZVDUX5p+fBnAGwwVrLdyQBxzDvFV+5kzOmphPdbAutyqneVPAmLNt91SISOgg==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:33:34 UTC], ["updated_at", 2017-03-25 03:33:34 UTC], ["id", 5]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 27ms (Views: 25.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 20:33:35 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"k0E3gYEJBsW3PL8uC2KWbmJRSf8rYLHs7CX6NQR+IEtuHUwQ7t5+5R7TogQc3GK4/vTCwB+k84ye40JAIMr4ew==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (4.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:33:35 UTC], ["updated_at", 2017-03-25 03:33:35 UTC], ["id", 6]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 6.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 20:33:38 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ms5U1ZV+OYx0liD/yVML2F4ySmYqnWB39UsG3M0fiPdnki9E+qlBrN15PdXe7f8OwpfBWR5ZIheHjb6p6atQxw==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.1ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:33:38 UTC], ["updated_at", 2017-03-25 03:33:38 UTC], ["id", 12]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 20:33:46 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"SYqcB6Kpx9mU/37KP6aXtWPmHiYNxfxb5M+qhs7yjzW01ueWzX6/+T0QY+AoGGNj/0OVGTkBvjuWCRLz6kZXBQ==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 03:33:46 UTC], ["id", 2]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 20:33:50 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"kSSUVeF/tJqUOmJo2QCv2cDtaiYpU0N6ELSFqp/pIIpseO/EjqjMuj3Vf0LOvlsPXEjhGR2XARpicj3fu134ug==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:33:50 UTC], ["updated_at", 2017-03-25 03:33:50 UTC], ["id", 2]] +  (2.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 4.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 20:33:58 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ijYoU5xtbxPuGWaYnOAxLOOCV213i4tgrL1TPlOVZLR3alPC87oXM0f2e7KLXsX6fyfcUkNPyQDee+tLdyG8hA==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 03:33:58 UTC], ["id", 1]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 20:33:59 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"O+YgqqxT4HqlroSfYLd4Un1Zjru6iSIuaYrK2+WFWIvGuls7w4SYWgxBmbV3CYyE4fwFhI5NYE4bTHKuwTGAuw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:33:59 UTC], ["updated_at", 2017-03-25 03:33:59 UTC], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:33:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 20:34:02 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"C6TEfjUjhd0FlONtMPFS4ca4AuyTVeGLxf3QKI5nviz2+L/vWvT9/ax7/kcnT6Y3Wh2J06eRo+u3O2hdqtNmHA==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:34:02 UTC], ["updated_at", 2017-03-25 03:34:02 UTC], ["id", 11]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:34:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 20:34:03 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"8E6Yw9upDEg8xFpntmyD0Trh2XHzoNndzkpHhOLqS70NEuNStH50aJUrR02h0ncHpkRSTsdkm728jP/xxl6TjQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 03:34:03 UTC], ["id", 11]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:34:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 25ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 20:34:06 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"Wdr+j6mHI0Aaa78xsfxW/Q815VLbCWZXL+3eAtaWQ+mkhoUexlBbYLOEohumQqIrk5Bube/NJDddK2Z38iKb2Q==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 03:34:06 UTC], ["updated_at", 2017-03-25 03:34:06 UTC], ["id", 11]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:34:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 20:34:08 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"nAY6ggmIK8frGoyzs5FlM/Pfs0d3Qv9uy8/erCoHS4hhWkETZl9T50L1kZmkL5Hlb3o4eEOGvQ65CWbZDrOTuA==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 03:34:08 UTC], ["id", 11]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 13ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:34:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:36:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 52ms (Views: 50.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:37:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (Invalid CSS after " content: &": expected ";", was "#9745;"): + 4: TaskList + 5: <%= csrf_meta_tags %> + 6: + 7: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + 8: <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + 9: + 10: + +app/assets/stylesheets/tasks.scss:25 +app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb__1586966160382652782_70249524855600' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (67.0ms) +Started GET "/tasks" for ::1 at 2017-03-24 20:37:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 53ms (Views: 51.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:37:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 54ms (Views: 52.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:37:43 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 55ms (Views: 51.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:38:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 54ms (Views: 52.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:39:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:39:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 50ms (Views: 48.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:48:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 29ms (Views: 26.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:48:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:48:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 35ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:48:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (2.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.2ms) +Completed 200 OK in 48ms (Views: 43.4ms | ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:48:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 41ms (Views: 37.5ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:49:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/toggle_complete" for ::1 at 2017-03-24 20:49:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/toggle_complete"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (3.3ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.4ms) +Started GET "/tasks" for ::1 at 2017-03-24 20:53:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/toggle_complete" for ::1 at 2017-03-24 20:54:08 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/toggle_complete"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered collection of /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.8ms) +Started GET "/tasks" for ::1 at 2017-03-24 20:55:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:01:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/tasks/index.html.erb:7: syntax error, unexpected ';' +'.freeze; @complete_toggle = ;@output_buffer.safe_append=' & + ^ +/Users/addieland/ada/projects/TaskList/app/views/tasks/index.html.erb:9: syntax error, unexpected ';' +'.freeze; @complete_toggle = ;@output_buffer.safe_append=' & + ^): + +app/views/tasks/index.html.erb:7: syntax error, unexpected ';' +app/views/tasks/index.html.erb:9: syntax error, unexpected ';' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.6ms) +Started GET "/tasks" for ::1 at 2017-03-24 21:01:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/tasks/index.html.erb:7: syntax error, unexpected ';' +'.freeze; @complete_toggle = ;@output_buffer.safe_append=' & + ^ +/Users/addieland/ada/projects/TaskList/app/views/tasks/index.html.erb:9: syntax error, unexpected ';' +'.freeze; @complete_toggle = ;@output_buffer.safe_append=' & + ^): + +app/views/tasks/index.html.erb:7: syntax error, unexpected ';' +app/views/tasks/index.html.erb:9: syntax error, unexpected ';' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.7ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.9ms) +Started GET "/tasks" for ::1 at 2017-03-24 21:02:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:05:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (204.6ms) +Completed 500 Internal Server Error in 214ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined local variable or method `book' for #<#:0x007fc8782a39b8>): + 4: <% @tasks.each do |task| %> + 5:
  • + 6: <% if task.completed %> + 7: <%= link_to raw("✓"), toggle_complete_path(book.id), method: :patch %> + 8: <% else %> + 9: <%= link_to raw("☐"), toggle_complete_path(book.id), method: :patch %> + 10: <% end %> + +app/views/tasks/index.html.erb:7:in `block in _app_views_tasks_index_html_erb__727151605528610976_70249509821220' +app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb__727151605528610976_70249509821220' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (18.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (80.6ms) +Started GET "/tasks" for ::1 at 2017-03-24 21:06:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 47ms (Views: 45.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 21:06:18 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"/1sp0vSFOklA97G2+m9YQGbhbVtlaeVQrpjnbS2vMfcCB1JDm1JCaekYrJzt0ayW+kTmZFGtpzDcXl8YCRvpxw==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:06:18 UTC], ["id", 1]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:06:20 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"t8JV6Br4jhd0AhRj1p039tgd806n050NNgE+dWZvuzhKni55dS/2N93tCUnBI8MgRLh4cZMX321Ex4YAQttjCA==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:06:20 UTC], ["id", 2]] +  (3.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 4.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 29ms (Views: 25.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:06:21 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"o+FmMfFYs/6Yz2LqRoVsyGCg+w4cB73+p2kownWl1lRevR2gno/L3jEgf8BRO5ge/AVwMSjD/57Vr5C3UREOZA==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:06:21 UTC], ["id", 3]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-24 21:06:22 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"o87q3Yg+KJaDKZkRMZ2YhVE3vTgX4eOD1vN3sWhebNNekpFM5+lQtirGhDsmI2xTzZI2ByMloeOkNc/ETOq04w==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:06:22 UTC], ["id", 5]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 26ms (Views: 23.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 21:06:23 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ZwpDh/7WtQk5C3ZS4S/ninljQ1LdtWjn+ekZ8bnGa0SaVjgWkQHNKZDka3j2kRNc5cbIbelxKoeLL6GEnXKzdA==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:06:23 UTC], ["id", 6]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 50ms (Views: 46.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 21:06:23 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"li0IMImdRJGZBUQXu+DuXK/nk+XULJPJm22/qpVsGF5rcXOh5ko8sTDqWT2sXhqKM0IY2uDo0anpqwffsdjAbg==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:06:23 UTC], ["updated_at", 2017-03-25 04:06:23 UTC], ["id", 6]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-24 21:06:24 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"+jdQHDNXhElpSTsS2c14AZDdgp920zMmB+X3wavUE8YHayuNXID8acCmJjjOc4zXDHgJoEIXcUZ1I0+0j2DL9g==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:06:24 UTC], ["updated_at", 2017-03-25 04:06:24 UTC], ["id", 5]] +  (4.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 4.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:06:25 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"8X6FmRWp7FeSBKlYSbp//TS1kvdEUhMhcBYqvDxbXK8MIv4Ien6UdzvrtHJeBIsrqBAZyHCWUUEC0JLJGO+Enw==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:06:25 UTC], ["updated_at", 2017-03-25 04:06:25 UTC], ["id", 3]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:06:26 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"YI/JkQQG+3HMN3Biiajf+IE/osRUlT28kfg8/zRYRnad07IAa9GDUWXYbUieFisuHZop+2BRf9zjPoSKEOyeRg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:06:26 UTC], ["updated_at", 2017-03-25 04:06:26 UTC], ["id", 2]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 26ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 21:06:27 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"vgahd+dw9Lt1ULv2yeNqulk8sGMGJ5Oz6BSjQeXQCBZDWtrmiKeMm9y/ptzeXZ5sxZk7XDLj0dOa0hs0wWTQJg==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:06:27 UTC], ["updated_at", 2017-03-25 04:06:27 UTC], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:06:30 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"sEYlxeSgGc+DzNzlbjXfguypMr8PH9iyVshvZVkfhohNGl5Ui3dh7yojwc95iytUcAy5gDvbmtIkDtcQfateuA==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:06:30 UTC], ["updated_at", 2017-03-25 04:06:30 UTC], ["id", 13]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 24ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:06:31 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"9skjFU4YGLCJ4weyWSJyHlmfaXydYHig3iHhZMDX8mkLlViEIc9gkCAMGphOnIbIxTriQ6mkOsCs51kR5GMqWQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:06:31 UTC], ["updated_at", 2017-03-25 04:06:31 UTC], ["id", 11]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 32ms (Views: 29.0ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-24 21:06:32 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"047l0j4StLL6OStC9/W4QnsHYbcamV7zhQTPxnvVPnIu0p5DUcXMklPWNmjgS0yU56LqiC5dHJP3wnezX2HmQg==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:06:32 UTC], ["updated_at", 2017-03-25 04:06:32 UTC], ["id", 10]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-24 21:06:36 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"GHUlfSwbvysa0e6aAX9EDAzRmw4ECmuQIPjKNd4Fj7zlKV7sQ8zHC7M+87AWwbDakHQQMTDOKfBSPnJA+rFXjA==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:06:36 UTC], ["id", 10]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-24 21:06:45 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"9Rk7tmar+94HF1jZUuyf7Ta12AQFO+tf6K0Wz8nxeo4IRUAnCXyD/q74RfNFUms7qhBTOzH/qT+aa6667UWivg==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:06:45 UTC], ["updated_at", 2017-03-25 04:06:45 UTC], ["id", 10]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 29ms (Views: 27.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:06:47 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"mctLOgAlb507aQ7oI2sHV2itUA1A+wGA8y++ygz2SWRklzCrb/IXvZKGE8I01fOB9AjbMnQ/Q+CB6Qa/KEKRVA==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:06:47 UTC], ["id", 13]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 11ms (ActiveRecord: 5.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:06:48 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"22sqSYA8VreRMGtgF6DyLyh+/ifrAh+OGXGKKeB63o4mN1HY7+sulzjfdkoAHgb5tNt1GN/GXe5rtzJcxM4Gvg==", "id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:06:48 UTC], ["id", 12]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 12ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 25ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-24 21:06:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.1ms) +Completed 200 OK in 34ms (Views: 32.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-24 21:06:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 21:06:54 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"71Qo49FcLx8rPpcbn8K/aXGOzHk/P2Nlv98Yo4TX+M0SCFNyvotXP4LRijGIfEu/7StHRgv7IQXNGaDWoGMg/Q==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:06:54 UTC], ["id", 1]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 29ms (Views: 27.6ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 21:06:55 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ylb+0Mcwm1IBwe4OX1dyig9JdRlhtCLGFVxLmkV/wb83CoVBqOfjcqgu8yRI6YZck+z+JlVwYKZnmvPvYcsZjw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:06:55 UTC], ["updated_at", 2017-03-25 04:06:55 UTC], ["id", 1]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:06:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:07:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 55ms (Views: 52.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:07:21 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"BNK6rEJNvCN66VdTYQtGAWjAt2tgUCPuFhHloyGCgA/5jsE9LZrEA9MGSnl2tbLX9GU8VFSUYY5k113WBTZYPw==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:07:21 UTC], ["updated_at", 2017-03-25 04:07:21 UTC], ["id", 12]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:07:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:07:22 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"MiLcC+C92tfvISyTJCi3Cj5cf8jVybFwfYC7vYn6+FbPfqeaj2qi90bOMbkzlkPcovn09+EN8xAPRgPIrU4gZg==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:07:22 UTC], ["id", 12]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:07:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 31ms (Views: 28.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:07:22 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"GR5IOxoseiNS2RPIr7W+YjavELUXkR10B90m4mfJd4jkQjOqdfsCA/s2DuK4C0q0qgqbiiNVXxR1G56XQ32vuA==", "id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:07:22 UTC], ["updated_at", 2017-03-25 04:07:22 UTC], ["id", 12]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:07:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 26ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:07:23 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"DvXEwCjjwFlFvva+6K+0tWKDPp4T61ccehNEb7Juh8Tzqb9RRzS4eexR65T/EUBj/ia1oScvFXwI1fwaltpf9A==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:07:23 UTC], ["id", 12]] +  (3.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 15ms (ActiveRecord: 4.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:07:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 37ms (Views: 32.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:07:24 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"OnCi3zX5Z9O01NYcIpdW8pRTihPY3DvyF/oYlClHRa/HLNlOWi4f8x07yzY1KaIkCPYBLOwYeZJlPKDhDfOdnw==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:07:24 UTC], ["updated_at", 2017-03-25 04:07:24 UTC], ["id", 13]] +  (3.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:07:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:07:25 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"NhljQu337zYDDq6xCR+K8Ly0stAENO9ZtF9vY+8huHPLRRjTgiCXFqrhs5seoX4mIBE57zDwrTnGmdcWy5VgQw==", "id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:07:25 UTC], ["id", 13]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:07:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 42ms (Views: 40.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:07:26 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ScYTrlZGxn2b0nant+Cwhx79gmbsYHp1NVqf06MeznC0mmg/OZG+XTI9a42gXkRRglgJWdikOBVHnCemh6oWQA==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.9ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:07:26 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:07:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:07:31 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"tMbNhBYOrp0ZNXGHdmwv6VrfOS5p3EqpslZCBr2g2mlJmrYVednWvbDabK1h0ts/xnqyEV0YCMnAkPpzmRQCWQ==", "id"=>"3"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:07:31 UTC], ["updated_at", 2017-03-25 04:07:31 UTC], ["id", 3]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 13ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:07:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:07:31 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"CJtIKQe/AARIQ0ekEv0EuIa8/URc5kIOAzw/aM3J1ET1xzO4aGh4JOGsWo4FQ/BuGhl2e2giAG5x+ocd6X0MdA==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:07:31 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:07:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-24 21:11:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 40ms (Views: 37.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 21:11:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 62ms (Views: 56.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-24 21:11:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.5ms) +Completed 200 OK in 42ms (Views: 39.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:11:36 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"itabKdMv91dPuc/ntSCMvaQTjcncRe1zh6cy4JjeGlJ3iuC4vPiPd+ZW0s2innhrOLYG9uiBrxP1YYqVvGrCYg==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:11:36 UTC], ["updated_at", 2017-03-25 04:11:36 UTC], ["id", 13]] +  (3.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 4.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:11:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:11:38 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"n2yPXPXPy2lbvB/I7S4P3ERbiTAvsdLP7SadkDocNRZiMPTNmhizSfJTAuL6kPsK2P4CDxt1kK+f4CXlHqjtJg==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:11:38 UTC], ["id", 13]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:11:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 30ms (Views: 27.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:12:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 62ms (Views: 60.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:12:23 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"I/RnU8bi0Tlm7Xhlad8nUMhi3JG3cX1BHyQXH/7TnHneqBzCqTWpGc8CZU9+YdOGVMdXroO1PyFt4q9q2mdESQ==", "id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:12:23 UTC], ["id", 11]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:12:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 27ms (Views: 22.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:12:24 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"/X6fYLK7J7Po7u4QAuhFxYCnbZgLXYXVY8mwbPHQ25UAIuTx3Wxfk0EB8zoVVrETHALmpz+Zx7URDwgZ1WQDpQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:12:24 UTC], ["updated_at", 2017-03-25 04:12:24 UTC], ["id", 11]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:12:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:12:25 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ErFFTvoBBN7P/lQx8nPT+tved2FGUU4hBAJUeI2gSQ3v7T7fldZ8/mYRSRvlzScsR3v8XnKVDEF2xOwNqRSRPQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:12:25 UTC], ["id", 11]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:12:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:12:26 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"3deE9z4SoBvfgFsKeKE35xR4vSkpAMUdXNOpvdFE+T0gi/9mUcXYO3ZvRiBvH8MxiN02Fh3Eh30uFRHI9fAhDQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:12:26 UTC], ["updated_at", 2017-03-25 04:12:26 UTC], ["id", 11]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:12:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:12:26 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"rf6KAhL1YzVPJAViMXzeHtSjOLAkArxWqxL9pw02xNdQovGTfSIbFebLGEgmwirISAazjxDG/jbZ1EXSKYIc5w==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:12:26 UTC], ["id", 11]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:12:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 26ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:12:27 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"yNVGYCXxjyY/cgtubi4copLlo3jY4IkmiKyemTg8aXY1iT3xSib3BpadFkR5kOh0DkAoR+wky0b6aibsHIixRg==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:12:27 UTC], ["updated_at", 2017-03-25 04:12:27 UTC], ["id", 12]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:12:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 26ms (Views: 23.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:12:28 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"DAfW0L1jPY32kqCK/ym/qB0K8xQsuUe/q1XQZiIKO0DxW61B0rRFrV99vaDol0t+ga94Kxh9Bd/Zk2gTBr7jcA==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:12:28 UTC], ["id", 12]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:12:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:12:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 57ms (Views: 55.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 55ms (Views: 53.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:13:05 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"pT9H9H9sKj4st3h3FrqTe8z1JvsjjWnb6LLkA1s6repYYzxlELtSHoVYZV0BBGetUFCtxBdJK7uadFx2f4512g==", "id"=>"13"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:13:05 UTC], ["updated_at", 2017-03-25 04:13:05 UTC], ["id", 13]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:13:06 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"+kONkFyjq8egO4T53cz3ft6LhGLsJmgduDCIsC9BKG0HH/YBM3TT5wnUmdPKcgOoQi4PXdjiKn3K9jDFC/XwXQ==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:13:06 UTC], ["id", 13]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 28ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:13:07 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"RzFHqf9lxIe5rLwBClWMRY3Y+1qtAJtVG6jREk6jWpS6bTw4kLK8pxBDoSsd63iTEX1wZZnE2TVpbmlnaheCpA==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:13:07 UTC], ["updated_at", 2017-03-25 04:13:07 UTC], ["id", 13]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:07 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:13:09 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"biH4mtK+g63zqfC1PmzlgQrwzMaaCBmu6XddLP28aZaTfYMLvWn7jVpG7Z8p0hFXllVH+a7MW86bseVZ2Qixpg==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:13:09 UTC], ["id", 13]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 25ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 53ms (Views: 50.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:13:39 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"2HW7Me6BSkDCr312chWkUoXsO4VBUkKpiWtkWwlMfEMlKcCggVYyYGtAYFxlq1CEGUmwunWWAMn7rdwuLfikcw==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:13:39 UTC], ["updated_at", 2017-03-25 04:13:39 UTC], ["id", 3]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:13:40 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"hsNwA5Xpx6xGT6wpGLBfxwLMCR5vll4lQ/uSgx0BXTN7nwuS+j6/jO+gsQMPDqsRnmmCIVtSHEUxPSr2ObWFAw==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:13:40 UTC], ["id", 3]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 30ms (Views: 27.0ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:13:41 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"W9TVmFV3THawVo79G/OpQchQGmqm6bWmBCAP6FzfJrOmiK4JOqA0Vhm5k9cMTV2XVPWRVZIt98Z25redeGv+gw==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:13:41 UTC], ["updated_at", 2017-03-25 04:13:41 UTC], ["id", 3]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 26ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:13:42 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"P11W1HlpaSVCj1YDbudyenoE45S0xCR5VqC9PWiOQ0TCAS1FFr4RBetgSyl5WYas5qFoq4AAZhkkZgVITDqbdA==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:13:42 UTC], ["id", 3]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 54ms (Views: 51.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:13:51 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"Sa/SkeDvBMAC/k2HTV8xkmyYpqb4EZQmMJB1mKZuDue086kAjzh84KsRUK1a4cVE8D0tmczV1kZCVs3tgtrW1w==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:13:51 UTC], ["id", 2]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 32ms (Views: 30.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:13:52 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"CXVvSM8NH+ew1NCX6woWA4NXjbIDLGihfz/0TzkIBTL0KRTZoNpnxxk7zb38tOLVH/IGjTfoKsEN+Uw6HbzdAg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:13:52 UTC], ["updated_at", 2017-03-25 04:13:52 UTC], ["id", 2]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 28ms (Views: 26.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:13:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 77ms (Views: 74.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:07 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 73ms (Views: 69.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:09 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"z0e3wG9GaM1kS2wlwxf0U4ynljLv1lOLnf49ntSBRuYyG8xRAJEQ7c2kcQ/UqQCFEAIdDdsSEevvOIXr8DWe1g==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:09 UTC], ["id", 2]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 22ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:10 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"pJOkCuUEpY8DrCYXZvyyM5WEu98qFzwsAvKW5uPDAEdZz9+bitPdr6pDOz1xQkblCSEw4B7TfkxwNC6Tx3fYdw==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:10 UTC], ["updated_at", 2017-03-25 04:14:10 UTC], ["id", 2]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 24ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:11 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"mHn37Qe0LkEFgg20EU63nSi9CrMZNUJ6TYBTHTLAFDllJYx8aGNWYaxtEJ4G8ENLtBiBjC3xABo/RutoFnTMCQ==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:11 UTC], ["id", 2]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 25ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:13 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"dWZKspkEVADFLaOj4tmbTLLPErvmLXqflzUVNvfd6VuIOjEj9tMsIGzCvon1Z2+aLmqZhNLpOP/l861D02kxaw==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:13 UTC], ["updated_at", 2017-03-25 04:14:13 UTC], ["id", 2]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 38ms (Views: 35.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:14 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"a0NTd6LQIL5OYar1bk2mJvNuKVeMxkr4M2zpM6SA4vqWHyjmzQdYnueOt99581Lwb8uiaLgCCJhBqlFGgDQ6yg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:14 UTC], ["id", 2]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:14 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"BlZqyn1QbdGSVRW3O6lAnbPtSP+n7TcIDEd5OXV0HS77ChFbEocV8Tu6CJ0sF7RLL0jDwJMpdWh+gcFMUcDFHg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:14 UTC], ["updated_at", 2017-03-25 04:14:14 UTC], ["id", 2]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:15 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"T3KvJOhXO8ZlfIa0CNR0aAneRwRgrdfDzQUIJW4/GOKyLtS1h4BD5syTm54faoC+lXvMO1RplaO/w7BQSovA0g==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:15 UTC], ["id", 2]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:16 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"g4zxqhMOu1My2ep3SW1WbeFT0YlDce4FiugRJmFZr8R+0Io7fNnDc5s2911e06K7ffZatne1rGX4LqlTRe139A==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:16 UTC], ["updated_at", 2017-03-25 04:14:16 UTC], ["id", 2]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 3.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 33ms (Views: 31.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:18 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"KTOYQ43IX8ZTiWryue/MC2aGI1Ey3HAZ7KJYA3vmEbfUb+PS4h8n5vpmd9iuUTjd+iOobgYYMnmeZOB2X1LJhw==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (3.1ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:18 UTC], ["id", 2]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 5.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 35ms (Views: 32.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:19 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"3dx8xpQnLkUqMlwV1yqVUetSiZz/vjptFDgm4Nk2jBkggAdX+/BWZYPdQT/AlGGHd/cCo8t6eA1m/p6V/YJUKQ==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:19 UTC], ["updated_at", 2017-03-25 04:14:19 UTC], ["id", 2]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 27ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:20 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"tM20uCUQ2HTNLPx5rQhf37MDLyP62G5r61H5EJq1GmJJkc8pSsegVGTD4VO6tqsJL6akHM4cLAuZl0FlvgHCUg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:20 UTC], ["id", 2]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:21 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"aBuARxf68RKpORFZ5WOjQYm7ILHSUmBmIYms1Is4aWyVR/vWeC2JMgDWDHPy3VeXFR6rjuaWIgZTTxShr4yxXA==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:21 UTC], ["updated_at", 2017-03-25 04:14:21 UTC], ["id", 2]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:22 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"iVxMC1kw8fGKXOeEYjW+1sDw5AF++jDrRv+nq6WAhkp0ADeaNueJ0SOz+q51i0oAXFVvPko+cos0OR/egTReeg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:22 UTC], ["id", 2]] +  (4.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 5.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.2ms) +Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 53ms (Views: 50.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:35 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"uK1Vx3VtmvTEdw0gs+PoPJEXyNpmBOm8EzP4GoR9BdRF8S5WGrri1G2YEAqkXRzqDbJD5VLAq9xh9UBvoMnd5A==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:35 UTC], ["updated_at", 2017-03-25 04:14:35 UTC], ["id", 2]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:36 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"CqOfD5HiEMhV486AmcAzOEB+9t9kMYTtDqZ2Ntm/G8L3/+Se/jVo6PwM06qOfsfu3Nt94FD1xo18YM5D/QvD8g==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.1ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:36 UTC], ["id", 2]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 25ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 53ms (Views: 51.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:44 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"Ffqghr5IS/Et7tTz9S2yFroMJNSJpJUFEVIICDVS86XoptsX0Z8z0YQBydnik0bAJqmv671g12VjlLB9EeYrlQ==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:44 UTC], ["updated_at", 2017-03-25 04:14:44 UTC], ["id", 2]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 33ms (Views: 30.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:45 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"QWdvDuYGT3FBCHFQm3lsO3yBNw0CYq8cxb/C/BMXCte8OxSfidE3UejnbHqMx5jt4CS8Mjam7Xy3eXqJN6PS5w==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:45 UTC], ["id", 2]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:14:46 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"7hjolWxZG4Z92rEceFSuTf82B+3jXNTyw9NSWi5lNugTRJMEA45jptQ1rDZv6lqbY5OM0teYlpKxFeovCtHu2A==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:46 UTC], ["updated_at", 2017-03-25 04:14:46 UTC], ["id", 2]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:14:48 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"URhVAcHz8oJkIhMVPHJ86LvLwAfegASNyn1wUjuVBgqsRC6QriSKos3NDj8rzIg+J25LOOpERu24u8gnHyHeOg==", "id"=>"11"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:48 UTC], ["updated_at", 2017-03-25 04:14:48 UTC], ["id", 11]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:14:48 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"2rEbKuJuWC4chQ/dlR2xW14j0w+A0rFj68mU4sO/ne8n7WC7jbkgDrVqEveCo0WNwoZYMLQW8wOZDyyX5wtF3w==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:48 UTC], ["id", 11]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:14:49 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"5tGpWECdyLbVwSEtLb4eXmcFkRPEk9PWem1CwUGmtY8bjdLJL0qwlnwuPAc6AOqI+6AaLPBXkbYIq/q0ZRJtvw==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:49 UTC], ["updated_at", 2017-03-25 04:14:49 UTC], ["id", 11]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:14:50 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"7qi+Tk1q4Mr5BMyYuL57mi+jfHXdTm8QshLBxskkQKoT9MXfIr2Y6lDr0bKvAI9Mswb3SumKLXDA1Hmz7ZCYmg==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:50 UTC], ["id", 11]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:14:51 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"LdfbzLLxy5TVnEMdrEA0o5LiWK5lLhgKNbgxWKr0OHHQi6Bd3SaztHxzXje7/sB1DkfTkVHqWmpHfoktjkDgQQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:51 UTC], ["updated_at", 2017-03-25 04:14:51 UTC], ["id", 11]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 11ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:14:52 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"qLTYRB5FCBqMkZoiKfxo6pcCdMiRCT8VbS3VlhwY8VBV6KPVcZJwOiV+hwg+Qpw8C6f/96XNfXUf623jOKwpYA==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:52 UTC], ["id", 11]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 23ms (Views: 19.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:14:53 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"7JuJbHLbPdAVSSmtgKrVENf/96MMNAABKuNNQzhxMewRx/L9HQxF8LymNIeXFCHGS1p8nDjwQmFYJfU2HMXp3A==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:14:53 UTC], ["updated_at", 2017-03-25 04:14:53 UTC], ["id", 13]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:14:54 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"BVZA/UQWj81HZZw6alp2cAU3ERpM9ddKFUFKQbVWeQP4CjtsK8H37e6KgRB95IKmmZKaJXgxlSpnh/I0keKhMw==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:14:54 UTC], ["id", 13]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:14:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 21:15:34 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"wXUodaVvQ2PxPwyWo/MMV4acK3UXwcFINCaYdEMP0y48KVPkyrg7Q1jQEby0TfiBGjmgSiMFgyhG4CABZ7sLHg==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:15:34 UTC], ["id", 1]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 21:15:35 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"kJ/zRvOQhKu3WvjNbIzrciz/MikNc3DOpBz9mdEmq1htw4jXnEf8ix615ed7Mh+ksFq5Fjm3Mq7W2kXs9ZJzaA==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:15:35 UTC], ["updated_at", 2017-03-25 04:15:35 UTC], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:15:36 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"vFghdXpZtdE+Z/Dj3v38yVE4anMXsyPaXSFzbY0fgsRBBFrkFY7N8ZeI7cnJQwgfzZ3hTCN3Ybov58sYqata9A==", "id"=>"3"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.4ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:15:36 UTC], ["updated_at", 2017-03-25 04:15:36 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 32ms (Views: 30.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:15:36 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"sfj5pTbrha57MwcaHDcQxgGFiXtbPxLemKTf9fvzJbpMpII0WTz9jtLcGjALieQQnSACRG/7UL7qYmeA30f9ig==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:15:36 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 32ms (Views: 26.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-24 21:15:38 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"la/ijRrrlubXu2/lAhYR4Bk2yrbWmfTRWkDFuQKZSWVo85kcdTzuxn5Ucs8VqOU2hZNBieJdtrEohn3MJi2RVQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:15:38 UTC], ["updated_at", 2017-03-25 04:15:38 UTC], ["id", 11]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 31ms (Views: 28.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:15:39 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"aBouHKvYJH3DbGxlT0jRyQE4G+0slYyIpd64qayMhVKVRlWNxA9cXWqDcU9Y9iUfnZ2Q0hhRzujXGADciDhdYg==", "id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:15:39 UTC], ["updated_at", 2017-03-25 04:15:39 UTC], ["id", 13]] +  (2.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (5.9ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.5ms) +Completed 200 OK in 41ms (Views: 32.8ms | ActiveRecord: 5.9ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:15:40 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"anGjM9IADFOVXazoWGIb0e4CuVao/AkeK2ktC+atgdeXLdiivdd0czyyscJP3O8HcqcyaZw4S35Zr5V+whlZ5w==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:15:40 UTC], ["id", 13]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 42ms (Views: 39.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:15:41 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"UMbFkJlAq0vEFo5Mt/CMgvvB9S+KowKWGSzuY08xi3ytmr4B9pfTa235k2agTnhUZ2R+EL5nQPZr6lYWa4VTTA==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:15:41 UTC], ["updated_at", 2017-03-25 04:15:41 UTC], ["id", 12]] +  (3.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 4.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 30ms (Views: 28.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:15:42 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"2BeyM6V27/Hkj/mrfBZaFcDH8m4DmpsDD5wpmOANNxQlS8miyqGX0U1g5IFrqK7DXGJ5UTde2WN9WpHtxLnvJA==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:15:42 UTC], ["id", 12]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:15:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:16:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 30ms (Views: 28.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:16:16 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"n66EltVaBdL0CjHkWnqkXqJ15oxzOLCNQ39vhHlMkWpi8v8Huo198l3lLM5NxFCIPtBts0f88u0xudfxXfhJWg==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:16:16 UTC], ["updated_at", 2017-03-25 04:16:16 UTC], ["id", 3]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:16:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:16:16 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"4tL0O7fpgI6BLHNVQLrSDUgrWP7WfluqiFpZJHoPVCkfjo+q2D74rijDbn9XBCbb1I7TweK6Gcr6nOFRXruMGQ==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.7ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:16:16 UTC], ["id", 3]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:16:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:16:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 54ms (Views: 52.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:16:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 68ms (Views: 65.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 21:16:38 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"2NfIgnRi+2KwmxVSLahpZ/Ol4YiSa/y1iHAuNUzY9sgli7MTG7WDQhl0CHg6Fp2xbwBqt6avvtX6tpZAaGwu+A==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:16:38 UTC], ["id", 1]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:16:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 49ms (Views: 45.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:16:39 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"gmcM5dVrdgEyKEtjmAHYvL1EvV3q8ktQd68UtRpxG/p/O3d0urwOIZvHVkmPvyxqIeE2Yt42CTAFaazAPsXDyg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:16:39 UTC], ["id", 2]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:16:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 25ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:16:39 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"6dNsEpiHEFUvFRMAGLYCluQSjOOR2WnllG+g52KIq1kUjxeD91BodYb6DioPCPZAeLcH3KUdK4XmqRiSRjxzaQ==", "id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:16:39 UTC], ["updated_at", 2017-03-25 04:16:39 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:16:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:16:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 50ms (Views: 47.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:17:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 51ms (Views: 49.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:18:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:18:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 60ms (Views: 57.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 21:18:12 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"e4Cd9DPoJrFBjnF3awiqOtBn7yetRzO9Loq9Xp7ZfPWG3OZlXD9ekehhbF18tl7sTMJkGJmDcd1cTAUrum2kxQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:18:12 UTC], ["updated_at", 2017-03-25 04:18:12 UTC], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:18:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 35ms (Views: 33.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:18:13 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"uzkyC6Mew0rXE6ntITa0cJ427/RjkA+rZqKA/owyUIFGZUmazMm7an78tMc2iECmApNky1dUTcsUZDiLqIaIsQ==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:18:13 UTC], ["updated_at", 2017-03-25 04:18:13 UTC], ["id", 2]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:18:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 41ms (Views: 39.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:28:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 112ms (Views: 109.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:29:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 53ms (Views: 50.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:29:37 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"sQbLfK6LeqYNZPUNVAoPoEys4mGvQq3bVrdGzcWNznVMWrDtwVwChqSL6CdDtPt20AlpXpuG77skcf644TkWRQ==", "id"=>"12"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:29:37 UTC], ["updated_at", 2017-03-25 04:29:37 UTC], ["id", 12]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:29:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:29:38 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"iRH55LUf7O9cN8XvGnej0j94MP52o2Z+Qu5Oa8mr5F10TYJ12siUz/XY2MUNyVcEo927wUJnJB4wKPYe7R88bQ==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:29:38 UTC], ["id", 12]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:29:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 27ms (Views: 24.8ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 58ms (Views: 56.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:30:36 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"FoKtHrEpSuoXYG5YaroBAdgkF2hfEB85Z+BIkbYv1mfr3taP3v4yyr6Pc3J9BPXXRIGcV2vUXVkVJvDkkpsOVw==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:30:36 UTC], ["updated_at", 2017-03-25 04:30:36 UTC], ["id", 12]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:30:37 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ACQr4O1xCpsnhWn0qW6RFTlkB3Cz+z5qF0BwkYhIgMX9eFBxgqZyu45qdN6+0GXDpcGMT4c/fAplhsjkrPxY9Q==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:30:37 UTC], ["id", 12]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-24 21:30:41 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"2AUII0STyLRI/GyXKbgtnN+MkhrbB83EPoddOsEA+jElWXOyK0SwlOETcb0+BtlKQykZJe/Dj6RMQeVP5bQiAQ==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:30:41 UTC], ["updated_at", 2017-03-25 04:30:41 UTC], ["id", 13]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-24 21:30:44 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"x8bMdldQE1LQX59ToAJd+vPU/vhE/Nwu0VJTZNAoT/06mrfnOIdrcnmwgnm3vKksb3F1x3A4nk6jlOsR9JyXzQ==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:30:44 UTC], ["id", 10]] +  (10.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 16ms (ActiveRecord: 10.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 21:30:45 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"HGe28cAIavFv6V2IIc5KJZe3VpCam4j/O1KhPiwhOZPhO81gr98S0cYGQKI2cL7zCxLdr65fyp9JlBlLCJXhow==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:30:45 UTC], ["id", 6]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-24 21:30:46 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"x4GTG1eS6K5iBQHV2G1iuA67jaDmzakZ1W457+6zuoc63eiKOEWQjsvqHP/P05Zukh4Gn9IJ63mnqIGaygditw==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:30:46 UTC], ["id", 5]] +  (6.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 11ms (ActiveRecord: 6.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 31ms (Views: 28.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:30:46 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"wBDy9tbkHFQIJ29AVt9JODzql7Sbn0V5rqyeeYng+8o9TIlnuTNkdKHIcmpBYb3uoE8ci69bBxncaiYMrVQj+g==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:30:46 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-24 21:30:47 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"SbvoVTkEUxFiWOjWWi9InYH67GN3jSOkM39/p1HuU9m055PEVtMrMcu39fxNkbxLHV9nXENJYcRBucfSdVqL6Q==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:30:47 UTC], ["id", 2]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-24 21:30:48 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"za+iTQIWhgbCTSz6dRO1gv7Wtoty9n+C6zW22+M7zsow89ncbcH+JmuiMdBirUFUYnM9tEYyPeKZ8w6ux48W+g==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 04:30:48 UTC], ["id", 1]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 25ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-24 21:30:50 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"HNNK2jexhp2W8d2EXonEhv80hk/sSevKFjEMWu8Ic8fhjzFLWGb+vT8ewK5JNzBQY5ENcNiNqapk97Qvy7yr9w==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:30:50 UTC], ["updated_at", 2017-03-25 04:30:50 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:30:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:31:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 52ms (Views: 49.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:33:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 57ms (Views: 55.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 21:33:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.8ms) +Completed 200 OK in 33ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-24 21:34:11 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"PRa1MqXWQ6VNeIr/bpJE/Qc4cJu0zIbl/tc/fq8+b0rASs6jygE7heSXl9V5LLArm537pIAIxIWMEYcLi4q3eg==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:34:11 UTC], ["updated_at", 2017-03-25 04:34:11 UTC], ["id", 5]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:34:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-24 21:34:13 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"vBRV1mvn2Kr3GJVJYtc1IoVP2XWAd/DLwmFM/TqxyLZBSC5HBDCgil73iGN1acH0GepSSrSzsquwp/SIHgUQhg==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:34:13 UTC], ["updated_at", 2017-03-25 04:34:13 UTC], ["id", 6]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:34:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-24 21:34:22 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"WWTsTLeJqS8whPWQfM2C2tf2iZrb9tevH187o33N14ekOJfd2F7RD5lr6Lprc3YMS1MCpe8ylc9tmYPWWXkPtw==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 04:34:22 UTC], ["updated_at", 2017-03-25 04:34:22 UTC], ["id", 12]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 21:34:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 33ms (Views: 31.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-24 21:34:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 34ms (Views: 31.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:28:26 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.2ms) +Completed 200 OK in 294ms (Views: 270.5ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:30:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:30:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:31:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 27ms (Views: 24.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 11:31:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 52ms (Views: 43.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 11:35:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 39ms (Views: 35.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 11:35:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (30.4ms) + Rendered tasks/edit.html.erb within layouts/application (34.3ms) +Completed 200 OK in 59ms (Views: 56.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-25 11:35:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"mcoBGDMVCeANNDJtCo/fKVH0n8k6o32WbpUMbz5+piT4fWpJ3V2YnKWjVE2MWKWMPnwGP5yO630i1V3wv+8m/Q==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME HEYO", "deadline"=>"2017-03-25"}, "commit"=>"Edit Task", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Get them dishes washed! WASH ME HEYO"], ["updated_at", 2017-03-25 18:35:14 UTC], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 10ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 11:35:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:35:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 41ms (Views: 39.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:40:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:54:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 34ms (Views: 32.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 11:54:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 32ms (Views: 28.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 11:55:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.7ms) +Completed 200 OK in 42ms (Views: 27.8ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 11:55:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.3ms) +Completed 200 OK in 39ms (Views: 35.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 11:55:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 41ms (Views: 37.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 11:56:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 34ms (Views: 31.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 11:56:03 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"6wr3imcEHriA2gjWMf7rBMwIu+9jMWS9AbgYrZDqz9gWVowbCNNmmCk1FfwmQB/SUK0w0Ff1Jt1zfqDYtF4X6A==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:56:03 UTC], ["updated_at", 2017-03-25 18:56:03 UTC], ["id", 1]] +  (0.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2017-03-25 11:56:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 22ms (Views: 19.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-25 11:56:04 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"84/1l/5pmwOfM4/vDkNf2YG+hfRlRB4CcstQfMvZnwkO044Gkb7jIzbcksUZ/asPHRsOy1GAXGIADegJ721HOQ==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:56:04 UTC], ["updated_at", 2017-03-25 18:56:04 UTC], ["id", 2]] +  (6.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 11ms (ActiveRecord: 7.0ms) + + +Started GET "/" for ::1 at 2017-03-25 11:56:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.9ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-25 11:56:06 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"lNVTqQ2AxzWdvHj58sAut/fO6A7uDxniPhVP4x73PwVpiSg4Yle/FTRTZdPlftpha2tjMdrLW4JM0/eWOkPnNQ==", "id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:56:06 UTC], ["updated_at", 2017-03-25 18:56:06 UTC], ["id", 10]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/" for ::1 at 2017-03-25 11:56:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:56:08 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ltzwZ0m2TWdxa+3bJa+Y0M1qFqfHzVW3n9OsxaNp6qNrgIv2JmE1R9iE8PEyEWwGUc+dmPMJF9ftFRSwh90ykw==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (1.7ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:56:08 UTC], ["id", 5]] +  (0.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 2.5ms) + + +Started GET "/" for ::1 at 2017-03-25 11:56:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 11:56:08 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"jUIAbKVoc3rMArc9IP4ie4ua25A+PXsgIrgL5LrTRO9wHnv9yr8LWmXtqhc3QNatFz9Qrwr5OUBQfrORnmec3w==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:56:08 UTC], ["id", 6]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/" for ::1 at 2017-03-25 11:56:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:56:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 31ms (Views: 28.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:56:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (200.6ms) +Completed 500 Internal Server Error in 208ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fe6ffeede08> +Did you mean? @task): + 1:

    + 2: <% if task.completed %> + 3: <%= link_to raw("☑"), toggle_complete_path(task.id), method: :patch %> + 4: <% else %> + 5: <%= link_to raw("☐"), toggle_complete_path(task.id), method: :patch %> + +app/views/tasks/show.html.erb:2:in `_app_views_tasks_show_html_erb___4298066257057560206_70315056526720' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (70.7ms) +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (247.9ms) +Completed 500 Internal Server Error in 253ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fe704dc43d8> +Did you mean? @task): + 1:

    + 2: <% if task.completed %> + 3: <%= link_to raw("☑"), toggle_complete_path, method: :patch %> + 4: <% else %> + 5: <%= link_to raw("☐"), toggle_complete_path, method: :patch %> + +app/views/tasks/show.html.erb:2:in `_app_views_tasks_show_html_erb___4298066257057560206_70315097860080' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.5ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.0ms) +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 30ms (Views: 28.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:57:30 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"rAz6a1Z9yQUnKPjZhimu9eQ8SnXDTGRxUPKxNl4+bqVRUIH6OaqxJY7H5fORl1ojeJnBSveIJhEiNAlDeoq2lQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:57:30 UTC], ["updated_at", 2017-03-25 18:57:30 UTC], ["id", 5]] +  (1.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:57:31 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"rENz0hI20X/VEWbEVZBDwKnGodVwsGbAlcEskb/pShtRHwhDfeGpX3z+e+5CLrcWNWMq6kR0JKDnB5Tkm12SKw==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:57:31 UTC], ["id", 5]] +  (0.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 6ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 24ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:57:32 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"bL53pkrzYN+XLvwTcSUCPclevNpTbF8u3eLNJJihGaCR4gw3JSQY/z7B4Tlmm/brVfs35WeoHU6vJHVRvBXBkA==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:57:32 UTC], ["updated_at", 2017-03-25 18:57:32 UTC], ["id", 5]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:57:33 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"4SKov1Ai4DHGk6qb4SY2N2qIhnhbn7mk0MavXu8j6UwcftMuP/WYEW98t7H2mMLh9i0NR29b+8SiABcry5cxfA==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:57:33 UTC], ["id", 5]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 11ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 25ms (Views: 20.2ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:57:34 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"bv5eSvQ1Lxh4xCZQuPJEYMiawZ5nJlj7mRBvHA21j0GToiXbm+JXONErO3qvTLC2VD9KoVPiGpvr1tdpKQFXcQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:57:34 UTC], ["updated_at", 2017-03-25 18:57:34 UTC], ["id", 5]] +  (4.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 11ms (ActiveRecord: 5.4ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:57:35 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"sj1kfxjkmAPfEkxQvoTh2tKgWVPK3B4d0HeGO+ZsHs1PYR/udzPgI3b9UXqpOhUMTgXSbP4YXH2isT5OwtjG/Q==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:57:35 UTC], ["id", 5]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.4ms) +Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:57:36 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"V6At/JsB3OQVeDwrXy/2NMbh1N1fH0jLKMRHEJEodCqq/FZt9NakxLyXIQFIkQLiWkRf4mvbCqtaAv9ltZysGg==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:57:36 UTC], ["updated_at", 2017-03-25 18:57:36 UTC], ["id", 5]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:57:39 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ecciP3I9A7hCj+e0qv8wVCEwEP+dHYbjZ1eZ7akTMAWEm1muHep7mOtg+p69QcSCvZWbwKnZxIMVkSGYjafoNQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:57:39 UTC], ["id", 5]] +  (1.9ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 7ms (ActiveRecord: 3.6ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.8ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:57:40 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"1ZELmrvGSYBXkdmEouKsMPIYom+29ZO71arQSTs7smcozXAL1BExoP5+xK61XFjmbr0pUIIx0dunbGg8H49qVw==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:57:40 UTC], ["updated_at", 2017-03-25 18:57:40 UTC], ["id", 5]] +  (2.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:57:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 32ms (Views: 29.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:58:38 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"Rkriw5QsWvXt8ikp/3F7ZVM+NFIpBfs9by8OVqyIYJS7FplS+/si1UQdNAPoz4+zz5u/bR3BuV0d6bYjiDy4pA==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:58:38 UTC], ["id", 5]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:58:39 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"+sUM2CSOuILXPCYB8UW9UzBks0vQga9nUTXuL1vqUUMHmXdJS1nAon7TOyvm+0mFrME4dORF7Qcj81Zaf16Jcw==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (2.8ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:58:39 UTC], ["updated_at", 2017-03-25 18:58:39 UTC], ["id", 5]] +  (0.9ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 9ms (ActiveRecord: 3.8ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 37ms (Views: 34.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:58:55 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"1myM260DsrRxgcM56p5mol48kKl4RM0hETODMY5RBpMrMPdKwtTKlNhu3hP9IJJ0wpkblkyAj0Fj9TtEquXeow==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:58:55 UTC], ["id", 5]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 7ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:58:55 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"0wOFKg7ZBiDfW27E15n3s54nI7qTPQ9uDCE+bvJVBuwuX/67YQ5+AHa0c+7AJwNlAoKohaf5TQ5+54Yb1uHe3A==", "id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:58:55 UTC], ["updated_at", 2017-03-25 18:58:55 UTC], ["id", 5]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 9ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:58:56 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"x8BEJfN5Ikjic9/S+Z6vjTjkZfrN+xFMA4GXhlt01do6nD+0nK5aaEucwvjuIFtbpEHuxfk/UyxxRy/zf8AN6g==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:58:56 UTC], ["id", 5]] +  (2.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 8ms (ActiveRecord: 3.6ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:58:57 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"0T6/3xST/fMYkp0vpd2PHQ0JbGNt6n4WjnAQl9/0mJksYsROe0SF07F9gAWyY3vLkaznXFkuPHb8tqji+0BAqQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:58:57 UTC], ["updated_at", 2017-03-25 18:58:57 UTC], ["id", 5]] +  (0.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:58:58 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"mAhk5U3H6a91GoaMIHTkza+/dizY0oY8oWgnNlqafK5lVB90IhCRj9z1m6Y3yhAbMxr9E+wWxFzTrp9Dfi6kng==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.9ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:58:58 UTC], ["id", 5]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 11ms (ActiveRecord: 3.7ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (4.3ms) +Completed 200 OK in 26ms (Views: 22.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:58:59 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"QXcaeZZIM9pfMXEMZLzLxtwb2kKOmIx7yGbls7uBpCO8K2Ho+Z9L+vbebCZzAj8QQL5Rfbpczhu6oF3GnzV8Ew==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:58:59 UTC], ["updated_at", 2017-03-25 18:58:59 UTC], ["id", 5]] +  (1.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 27ms (Views: 23.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:58:59 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"I/Ck+lrYU/At6n5lddu3TQ6Fk438B6MCiAbF2UfgvFferN9rNQ8r0IQFY09iZUObkiAYssjD4WL6wH2sY1RkZw==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:58:59 UTC], ["id", 5]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:58:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:59:00 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ftE/zdI/F8vDJRZA1qzv1qzYaV++0V9RtH4lbu2nsJWDjURcvehv62rKC2rBEhsAMH3iYIoVHTHGuJ0byRNopQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:59:00 UTC], ["updated_at", 2017-03-25 18:59:00 UTC], ["id", 5]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:59:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:59:01 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"YSkm61NJINtikV+XlreNiXHkhTJ/S/xCBE1/Xacr4TycdV16PJ5Y+8t+Qr2BCXlf7UEODUuPviJ2i8cog585DA==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.8ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:59:01 UTC], ["id", 5]] +  (1.8ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 11ms (ActiveRecord: 3.5ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:59:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 22ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:59:02 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"FKFgSqy0LONJApWqOYrJr1AadhyV+ssIjEDaXh+4bPHp/Rvbw2NUw+DtiIAuND15zL/9I6E+iWj+hmIrOwy0wQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:59:02 UTC], ["updated_at", 2017-03-25 18:59:02 UTC], ["id", 5]] +  (2.2ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:59:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:59:03 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"T5bu34NgJ0xyCB/5b0bKpIp7ZZW6+hVohUJgFxKs+3uyypVO7LdfbNvnAtN4+D5yFt7uqo4+Vwj3hNhiNhgjSw==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:59:03 UTC], ["id", 5]] +  (0.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:59:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 26ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:59:03 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"e3HvyLv0fLmk+7f/9EFx8gR8hBMjYPPjQwU7SlhGVsGGLZRZ1CMEmQ0UqtXj/4UkmNkPLBeksYMxw4M/fPKO8Q==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:59:03 UTC], ["updated_at", 2017-03-25 18:59:03 UTC], ["id", 5]] +  (1.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:59:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:59:04 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"WLJaY3L/dPPaS/Jk2uzIMmZ1BYp/4KdCCmVE3bK7I4il7iHyHSgM03Ok707NUjzk+tCOtUsk5SJ4o/yolg/7uA==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:59:04 UTC], ["id", 5]] +  (4.1ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 9ms (ActiveRecord: 4.5ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:59:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:59:05 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"3WN8IFAQJ3LJupHCu6njBeSDDcowlF/zXsrhu+1STrUgPwexP8dfUmBVjOisFxfTeCaG9QRQHZMsDFnOyeaWhQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:59:05 UTC], ["updated_at", 2017-03-25 18:59:05 UTC], ["id", 5]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 8ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:59:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 23ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:59:09 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"wC3vGrAhkY2BY2GSCVoUAzQ8YjqrElEs65AZr13Rvp09cZSL3/bprSiMfLge5ODVqJnpBZ/WE0yZVqHaeWVmrQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.8ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:59:09 UTC], ["id", 5]] +  (1.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 8ms (ActiveRecord: 3.7ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:59:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:59:10 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"OKPP2LBsbfFcKpkyTRGejJT5drdXoY1JhS3bJ8ZuAFbF/7RJ37sV0fXFhBhar2paCFz9iGNlzyn362NS4trYZg==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.4ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 18:59:10 UTC], ["updated_at", 2017-03-25 18:59:10 UTC], ["id", 5]] +  (4.1ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 11ms (ActiveRecord: 5.0ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:59:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 11:59:12 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"Ct/7h/16lYMLMG5FZCJseQN5w3EXq31GF/8ktaHiLHj3g4AWkq3to6Lfc29znJivn9xITiNvPyZlOZzAhVb0SA==", "id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 18:59:12 UTC], ["id", 5]] +  (1.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 10ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 11:59:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 11:59:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 49ms (Views: 46.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 12:00:54 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"d2cgNDng397bDsPkNrb1Rwu5BTfnLSqqOYE/CJN52fGKO1ulVjen/nLh3s4hCAGRlxyOCNPpaMpLR4d9t80BwQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 19:00:54 UTC], ["updated_at", 2017-03-25 19:00:54 UTC], ["id", 5]] +  (2.3ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 3.7ms) + + +Started GET "/" for ::1 at 2017-03-25 12:00:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 12:00:57 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"Vxx380s7D4t6bZKqAsh2I4PYoXbVTK5DKity87qp5zSqQAxiJOx3q9OCj4AVdoL1H30qSeGI7CNY7cqGnh0/BA==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 19:00:57 UTC], ["id", 5]] +  (0.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2017-03-25 12:00:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 12:00:58 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"LTpcEot8EBe+aUH5D6ApzP7858/9+2GQQ/mk9bIhUCrQZieD5KtoNxeGXNMYHt0aYlls8Mk/I/AxPxyAlpWIGg==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 19:00:58 UTC], ["id", 3]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2017-03-25 12:00:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 25ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-25 12:00:59 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"5jfJy1hD21fQot/lzph8Cfz8AF6akUCbs8eickieJxkba7JaN5Sjd3lNws/ZJojfYFmLYa5VAvvBARoHbCr/KQ==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 19:00:59 UTC], ["id", 2]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2017-03-25 12:00:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-25 12:01:01 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"0cSohjMjoj8fwqOi+pZYYkz/uvkl+zRdI1Vonlja0XwsmNMXXPTaH7YtvojtKKy00FoxxhE/dj1Rk9DrfG4JTA==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 19:01:01 UTC], ["id", 11]] +  (1.8ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 29ms (Views: 25.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-25 12:01:02 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"JoPoo/PWJA+iM1KMAqWgjXD0jLqIaVfpN7UnUC8KVGnb35MynAFcLwvcT6YVG1Rb7FEHhbytFYlFc58lC76MWQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 19:01:02 UTC], ["updated_at", 2017-03-25 19:01:02 UTC], ["id", 11]] +  (0.8ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-25 12:01:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 44ms (Views: 42.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-25 12:01:06 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"g7CUN1rqdqgzSeFCpPUXGvWAqwTZhpCb2M93wlL+hXV+7O+mNT0OiJqm/GizS+PMaSUgO+1C0vuqCc+3dkpdRQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 19:01:06 UTC], ["id", 11]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/11 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-25 12:01:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 22ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 45ms (Views: 42.5ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:01:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 34ms (Views: 31.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 12:01:14 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"UlbEL1LvVG4cppnBeR22/xEnjB9MLb2JTWV51/ZzWM2vCr++PTgsTrVJhOtuo0IpjYIHIHjp/+k/o8Gi0seA/Q==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 19:01:14 UTC], ["id", 1]] +  (1.8ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 9ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:01:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 12:01:19 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"sj8gqnz63H5MIweHfHhfe7V3H3WUzeIRJwHIid7NYWBPY1s7Ey2kXuXMGq1rxqutKdKUSqAJoHFVx3D8+nm5UA==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 19:01:19 UTC], ["updated_at", 2017-03-25 19:01:19 UTC], ["id", 1]] +  (2.2ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:01:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.5ms) +Completed 200 OK in 41ms (Views: 37.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 12:01:27 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"47Zn5KC3XdhugSGNFA2VMZrTJ6aOk5f/CmiHvHxalkIe6hx1z2Al+MduPKcDs2HnBnasmbpX1Z94rj/JWO5Ocg==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 19:01:27 UTC], ["updated_at", 2017-03-25 19:01:27 UTC], ["id", 3]] +  (0.8ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 12:01:28 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"AumVqIDviovKNpYOQfrWdalOHLyq0GZgSrctch01Vc//te457zjyq2PZiyRWRCKjNeuXg54UJAA4cZUHOYGN/w==", "id"=>"3"} + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 19:01:28 UTC], ["id", 3]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 12:01:28 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"Ep7/xKLTou9nidLr4Vl1vih2Br8l6YcD9nfHknx0uyjvwoRVzQTaz85mz8H254FotNONgBEtxWOEsX/nWMBjGA==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 19:01:28 UTC], ["updated_at", 2017-03-25 19:01:28 UTC], ["id", 6]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 12:01:29 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"fe3XWQGaeVyCSaPmv4vecbtR24ExcIpqCQXgpcaWTuaAsazIbk0BfCumvsyoNSqnJ/RQvgW0yAp7w1jQ4iKW1g==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 19:01:29 UTC], ["updated_at", 2017-03-25 19:01:29 UTC], ["id", 5]] +  (4.9ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 11ms (ActiveRecord: 7.3ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 63ms (Views: 58.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-25 12:01:37 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"iqRu4Dd/qT2eWbl79bsziMUVY9pCdXeRo4sNG3G9L5B3+BVxWKjRHTe2pFHiBcdeWbDo5XaxNfHRTbVuVQn3oA==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 19:01:37 UTC], ["updated_at", 2017-03-25 19:01:37 UTC], ["id", 2]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 12:01:47 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"mnApIzFdiJjBegVj/6werlNzJBoz7rGCh4MhWjXDmgFnLFKyXorwuGiVGEnoEup4z9avJQcq8+L1RZkvEXdCMQ==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 19:01:47 UTC], ["updated_at", 2017-03-25 19:01:47 UTC], ["id", 3]] +  (1.1ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.7ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-25 12:01:54 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"P5RaXgO0HyXY4acVahDm1vA1KyuUJsnlAQ87rEBU5DHCyCHPbGNnBXEOuj99rhIAbJCgFKDii4VzyYPZZOA8AQ==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 19:01:54 UTC], ["id", 13]] +  (4.9ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 5.7ms) + + +Started GET "/" for ::1 at 2017-03-25 12:01:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:20:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.1ms) +Completed 200 OK in 41ms (Views: 38.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:23:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 20.6ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 12:23:10 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"tRhW5zKZNYV5zosf72g55OnQXKqD2wCod4m8cfUGpalIRC12XU5NpdAhljX41s0ydXXXlbcfQsgFTwQE0bJ9mQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 19:23:10 UTC], ["id", 1]] +  (7.1ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 11ms (ActiveRecord: 7.5ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:23:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:23:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:23:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.2ms) +Completed 200 OK in 32ms (Views: 29.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:23:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.0ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `parse' for Sat, 25 Mar 2017 00:00:00 UTC +00:00:Time): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed %>! Yay!

    + 14: <% else %> + 15:

    Complete by: <%= @task.deadline.parse %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___4298066257057560206_70315098909400' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (65.3ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 12:23:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (7.0ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `ordinal' for Sat, 25 Mar 2017 00:00:00 UTC +00:00:Time): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed %>! Yay!

    + 14: <% else %> + 15:

    Complete by: <%= @task.deadline.ordinal %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___4298066257057560206_70315107585360' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.4ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.2ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 12:23:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (12.4ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `date' for Sat, 25 Mar 2017 00:00:00 UTC +00:00:Time): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed %>! Yay!

    + 14: <% else %> + 15:

    Complete by: <%= @task.deadline.date %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___4298066257057560206_70315057300420' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.4ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.0ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 12:23:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 34ms (Views: 30.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:26:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.1ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `cwday' for Sat, 25 Mar 2017 00:00:00 UTC +00:00:Time +Did you mean? wday +Did you mean? wday): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed %>! Yay!

    + 14: <% else %> + 15:

    Complete by: <%= @task.deadline.cwday %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___4298066257057560206_70315098881740' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.7ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (66.0ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 12:27:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (wrong number of arguments (given 0, expected 1)): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed %>! Yay!

    + 14: <% else %> + 15:

    Complete by: <%= @task.deadline.strftime %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___4298066257057560206_70315107505720' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.2ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 12:27:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (109.4ms) +Completed 500 Internal Server Error in 114ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for #<#:0x007fe701a0ad30>): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed %>! Yay!

    + 14: <% else %> + 15:

    Complete by: <%= strftime(@task.deadline) %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___4298066257057560206_70315070741980' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.6ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 12:27:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (113.3ms) +Completed 500 Internal Server Error in 119ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for #<#:0x007fe702c5be58>): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed %>! Yay!

    + 14: <% else %> + 15:

    Complete by: <%= strftime(@task.deadline) %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___4298066257057560206_70315054543280' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.3ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 12:30:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 13:34:05 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"8BNhzkt5zrojPjC03L9yal3VgpKdDluhRRQjv2VMvS4NTxpfJK62morRLZ7LAYa8wXAJranKGcE30pvKQfhlHg==", "id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 20:34:05 UTC], ["updated_at", 2017-03-25 20:34:05 UTC], ["id", 1]] +  (2.3ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 14ms (ActiveRecord: 4.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:34:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 33ms (Views: 30.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 13:34:06 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"cUX6XPAH5NxKr5q52WRJcWcvYhwezj6cCUarwsh6fDSMGYHNn9Cc/ONAh5PO2r2n+4rpIyoKfPx7gBO37M6kBA==", "id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 20:34:06 UTC], ["id", 1]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 9ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:34:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 28ms (Views: 20.6ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:34:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 26ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 13:34:50 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"5x3BwQww/bxwsUmxgXnOjV0y93xtPMCkmtiinYgNceUaQbpQY+eFnNleVJuWxzpbwZd8Q1n4gsToHhrorLmp1Q==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", 2017-03-25 20:34:50 UTC], ["updated_at", 2017-03-25 20:34:50 UTC], ["id", 1]] +  (1.8ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 10ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:34:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.4ms) +Completed 200 OK in 36ms (Views: 32.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:38:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (28.6ms) + Rendered tasks/edit.html.erb within layouts/application (31.1ms) +Completed 200 OK in 59ms (Views: 55.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:41:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.1ms) + Rendered tasks/edit.html.erb within layouts/application (6.2ms) +Completed 200 OK in 30ms (Views: 27.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:43:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (6.7ms) + Rendered tasks/edit.html.erb within layouts/application (9.0ms) +Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:43:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.3ms) + Rendered tasks/edit.html.erb within layouts/application (8.0ms) +Completed 200 OK in 28ms (Views: 26.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-25 13:44:31 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kFXSjsi2RYb1pmUnsloTT4SroiQ7ACdJd/7hT/k5BohtCakfp2E9plxJeA2l5OeZGA4pGw/EZSkFOFk63Y3euA==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME HEYO", "deadline(1i)"=>"2017", "deadline(2i)"=>"3", "deadline(3i)"=>"27", "deadline(4i)"=>"06", "deadline(5i)"=>"00"}, "commit"=>"Edit Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "deadline" = ?, "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", nil], ["completed", nil], ["updated_at", 2017-03-25 20:44:31 UTC], ["id", 1]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 10ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:44:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (6.5ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed.strftime("%m/%d/%Y at %I:%M%p") %>! Yay!

    + 14: <% else %> + 15:

    Complete by: <%= @task.deadline.strftime("%m/%d/%Y at %I:%M%p") %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___4298066257057560206_70315055250120' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (68.0ms) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to ChangeDatetimeFieldsToDate (20170325204728) +  (0.1ms) begin transaction +  (0.3ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "deadline" datetime, "completed" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "atasks" ("id","name","description","deadline","completed","created_at","updated_at") + SELECT "id","name","description","deadline","completed","created_at","updated_at" FROM "tasks" +  (0.6ms) DROP TABLE "tasks" +  (0.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "deadline" datetime, "completed" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "tasks" ("id","name","description","deadline","completed","created_at","updated_at") + SELECT "id","name","description","deadline","completed","created_at","updated_at" FROM "atasks" +  (0.1ms) DROP TABLE "atasks" +  (0.1ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "deadline" datetime, "completed" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "atasks" ("id","name","description","deadline","completed","created_at","updated_at") + SELECT "id","name","description","deadline","completed","created_at","updated_at" FROM "tasks" +  (0.2ms) DROP TABLE "tasks" +  (0.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "deadline" date, "completed" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "tasks" ("id","name","description","deadline","completed","created_at","updated_at") + SELECT "id","name","description","deadline","completed","created_at","updated_at" FROM "atasks" +  (0.1ms) DROP TABLE "atasks" + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170325204728"]] +  (0.7ms) commit transaction + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:49:40 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.0ms) + Rendered tasks/edit.html.erb within layouts/application (3.8ms) +Completed 200 OK in 37ms (Views: 23.9ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-25 13:49:48 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"6t+EuDEiAdkz4PEZYEUZinJyza7U2GTLAEkV9DREEowXg/8pXvV5+ZoP7DN3++1c7tdGkeAcJqtyj62BEPDKvA==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME HEYO", "deadline"=>"2017-03-30"}, "commit"=>"Edit Task", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "deadline" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", Thu, 30 Mar 2017], ["updated_at", 2017-03-25 20:49:48 UTC], ["id", 1]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 9ms (ActiveRecord: 1.4ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:49:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 24ms (Views: 21.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:50:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 26.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 13:50:25 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"L0Dzvi5rD0Pgz7K1oKeQNmfjGLwqDb97HYNe4SRUY4HSHIgvQbx3Y0kgr5+3GWTg+0aTgx7J/RtvReaUAOC7sQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms) + + + +NoMethodError (undefined method `now' for Date:Class +Did you mean? new): + +app/controllers/tasks_controller.rb:46:in `toggle_complete' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (69.7ms) +Started GET "/tasks/" for ::1 at 2017-03-25 13:51:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 21ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 13:51:24 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"NAod8TwV3BRK6OKHTIBOhe57MJ7y/DFoBbk4kxW7CJrJVmZgU8KkNOMH/61bPrpTct67ocY4cwh3f4DmMQ/Qqg==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms) + + + +NoMethodError (undefined method `now' for Date:Class +Did you mean? new): + +app/controllers/tasks_controller.rb:46:in `toggle_complete' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.7ms) +Started GET "/tasks/" for ::1 at 2017-03-25 13:51:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.8ms) +Completed 200 OK in 34ms (Views: 25.9ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 13:51:52 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"lAz0G0w5xHGZjHwi6RYrrOOlspXPl6oXTZh89LQBN9tpUI+KI+68UTBjYQj+qN96fwA5qvtT6Hc/XsSBkLXv6w==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 20:51:53 UTC], ["id", 1]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/ +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/" for ::1 at 2017-03-25 13:51:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:51:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 41ms (Views: 38.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:52:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.1ms) +Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:52:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.0ms) + Rendered tasks/edit.html.erb within layouts/application (6.1ms) +Completed 200 OK in 52ms (Views: 49.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-25 13:52:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"sYHJW4LB0e40yW5NNp3fJIkZr+GmpKT7FFSc+VMk977QNqIKbIlAkpxeCG2wSqWB5pE2FwCJMhBYFM1m0rV3Zw==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME HEYO", "deadline"=>"2017-03-31"}, "commit"=>"Edit Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "deadline" = ?, "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", Fri, 31 Mar 2017], ["completed", nil], ["updated_at", 2017-03-25 20:52:37 UTC], ["id", 1]] +  (3.0ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 15ms (ActiveRecord: 3.6ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:52:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 26ms (Views: 21.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 13:52:42 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"NHw4+7yREjGSQWiUk8MxNdiq5YSEp0R5htl0D+X+V0nJIENq00ZqETuudb6EfcXjRA9uu7BjBhn0H8x6wUqPeQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 20:52:42 UTC], ["id", 1]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:52:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:52:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.6ms) + Rendered tasks/edit.html.erb within layouts/application (6.3ms) +Completed 200 OK in 43ms (Views: 40.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-25 13:52:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"hDBQ+MwYWDiI0fpuerJUSWfamn37jOzTGXN5Y8lz2YnlhzupIlDJRCBGnE78ZS7sCFIDi12hejhVMyj8SOJZUA==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME HEYO", "deadline"=>"2017-03-28"}, "commit"=>"Edit Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "deadline" = ?, "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", Tue, 28 Mar 2017], ["completed", nil], ["updated_at", 2017-03-25 20:52:52 UTC], ["id", 1]] +  (0.9ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 7ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:52:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:53:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.2ms) + Rendered tasks/edit.html.erb within layouts/application (6.4ms) +Completed 200 OK in 53ms (Views: 50.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:54:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.3ms) + Rendered tasks/edit.html.erb within layouts/application (4.1ms) +Completed 200 OK in 33ms (Views: 21.1ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-25 13:54:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"E3rK3OmSeZ1kGtSshjwhA5nmtynbPcnYiE+OUrpG6I7uJrFNhkUBvc31yYaRgtXVBUM8Fu/5i7j6iTYnnvIwvg==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME HEYO", "deadline"=>"2017-03-30"}, "commit"=>"Edit Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "deadline" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", Thu, 30 Mar 2017], ["updated_at", 2017-03-25 20:54:30 UTC], ["id", 1]] +  (5.5ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 13ms (ActiveRecord: 6.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:54:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 23ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 13:54:31 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"brPLYOJa0ZMHpDLbsfYRlWUAO0wlvkDdkcpjD4X3HiGT77DxjY2ps65LL/GmSOVD+aWwcxF6Ar3jDNt6oUPGEQ==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 20:54:31 UTC], ["id", 1]] +  (0.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:49) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 7ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:54:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 23ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:54:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (5.2ms) + Rendered tasks/edit.html.erb within layouts/application (8.3ms) +Completed 200 OK in 43ms (Views: 40.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-25 13:54:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"G8VuFpn+esER8+cFVBbhw9H04fGJC8vwpFKSO1TAACl6cgVHd7brvblkgSXSwZtmvnx4By8mXRvoEsOk1VGA8A==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME HEYO", "deadline"=>"2017-03-29"}, "commit"=>"Edit Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "deadline" = ?, "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", Wed, 29 Mar 2017], ["completed", nil], ["updated_at", 2017-03-25 20:54:37 UTC], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 5ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:54:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:55:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 35ms (Views: 20.7ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 13:55:59 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"JAwURWvxj/ecb0d7rGSIqox5qXLL6qHv+sBPLnpQXuPZUG/UBCb31zWAWlG72nx8ENwiTf8u44+IBvdbXuSG0w==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 20:55:59 UTC], ["id", 1]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:55:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 26ms (Views: 21.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 13:56:00 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.5ms) + Rendered tasks/edit.html.erb within layouts/application (7.3ms) +Completed 200 OK in 45ms (Views: 42.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-25 13:56:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZOBbICoZX6Wn27/jFQz5RobqAOG7V6ORQ5PlEabw1OEFVzBxxFHO2Q9M2cOT24Pj6WKZFx16NXoP07SOJ2FUOA==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME HEYO", "deadline"=>"2017-03-30"}, "commit"=>"Edit Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "deadline" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", Thu, 30 Mar 2017], ["updated_at", 2017-03-25 20:56:04 UTC], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 13:56:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:00:17 -0700 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.8ms) +Completed 200 OK in 294ms (Views: 270.8ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:00:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 20ms (Views: 17.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:00:49 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"YC8vMZh29ICWgx5a8VZBQgEme9shdgkbcLFS7ocMVIudc1Sg96GMoD9sA3Dm6LWUnYPw5BWyS3sCd+qbo7iMuw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:00:49 UTC], ["id", 1]] +  (0.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 7ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:00:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 19ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:00:50 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"/N6b0RkZcLRDf3h6xjVuM8MYFjoZTDQytwAIcYysTvEBguBAds4IlOqQZVDRi5rlX72dBS2IdlLFxrAEqBiWwQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:00:50 UTC], ["id", 1]] +  (0.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 5ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:00:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:00:51 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"jzp+d6zCOF9LdSHYlBHikGarLwMG/0sONzVE6WYcDWtyZgXmwxVAf+KaPPKDrxZG+g6kPDI7CW5F8/ycQqjVWw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:00:51 UTC], ["id", 1]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:00:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:00:52 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"cPonfxBRyMSyU2ZXNm19Us80JHfgpKJU4kmbK/orh7uNplzuf4aw5Bu8e30h04mEU5GvSNRg4DSQjyNe3p9fiw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:00:52 UTC], ["id", 1]] +  (1.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:00:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 21ms (Views: 17.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:00:52 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"fPj49S6jz4oT9orXAOq6nPKg11NXqi/n4M3Nuw6x5/qBpINkQXS3qroZl/0XVE5KbgVcbGNubYeSC3XOKgU/yg==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:00:52 UTC], ["id", 1]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:00:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:00:53 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"sPj9R9wudRRW9yqYpbMMieZA0M8cheadZpcZ1oI056xNpIbWs/kNNP8YN7KyDfhfeuVb8ChBpP0UUaGjpoA/nA==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:00:53 UTC], ["id", 1]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 4ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:00:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 16:18:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-25 16:18:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (8.2ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed.strftime("%m/%d/%Y") %>! Yay!

    + 14: <% else %> + 15:

    <%= @task.deadline.strftime("Complete by: %m/%d/%Y") %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___2482853104900709163_70215581080180' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (65.7ms) +Started GET "/" for ::1 at 2017-03-25 16:18:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:18:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 31ms (Views: 28.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 16:18:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 35ms (Views: 32.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 16:18:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 35ms (Views: 32.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 16:18:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 34ms (Views: 31.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 16:18:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 39ms (Views: 35.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-25 16:18:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (4.9ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed.strftime("%m/%d/%Y") %>! Yay!

    + 14: <% else %> + 15:

    <%= @task.deadline.strftime("Complete by: %m/%d/%Y") %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___2482853104900709163_70215553615480' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.2ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.8ms) +Started GET "/" for ::1 at 2017-03-25 16:18:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 24ms (Views: 20.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-25 16:18:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.3ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed.strftime("%m/%d/%Y") %>! Yay!

    + 14: <% else %> + 15:

    <%= @task.deadline.strftime("Complete by: %m/%d/%Y") %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___2482853104900709163_70215568393140' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.2ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (56.5ms) +Started GET "/" for ::1 at 2017-03-25 16:19:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 31ms (Views: 27.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-25 16:19:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (9.0ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed.strftime("%m/%d/%Y") %>! Yay!

    + 14: <% else %> + 15:

    <%= @task.deadline.strftime("Complete by: %m/%d/%Y") %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___2482853104900709163_70215583469380' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (10.4ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (65.8ms) +Started GET "/" for ::1 at 2017-03-25 16:19:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 26ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/10" for ::1 at 2017-03-25 16:19:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 35ms (Views: 32.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/11/toggle_complete" for ::1 at 2017-03-25 16:19:11 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"mlxWtMb+5KtM8j1Xd3aP3Ar9aKx3YS9/brsaMgPMIXRnAC0lqSmci+UdIH1gyHsKlljjk0OlbR8cfaJHJ3j5RA==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:19:11 UTC], ["id", 11]] +  (1.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2017-03-25 16:19:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-25 16:19:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 40ms (Views: 37.2ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/11" for ::1 at 2017-03-25 16:19:18 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"faWR5j/kiuR3PqgLhIUoO76Zg0BHSHj1mKj9nC7EQ5iA+ep3UDPyxN7RtSGTO9ztIjwIf3OMOpXqbkXpCnCbqA==", "id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 11]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 30ms (Views: 26.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:19:19 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"OXXUMMEjs9oRx/IvWQRgumqdQPZ+JAiNCRuiQlrOwDrEKa+hrvTL+rgo7wVOupRs9jjLyUrgSu173Ro3fnoYCg==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:19:19 UTC], ["id", 1]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 27ms (Views: 24.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-25 16:19:20 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"/377uP207ApOm/Dw/Sl26Mvg3QGk93Lzt2cHLuot6kECIoApkmOUKud07drql4I+V0VWPpAzMJPFob9bzpkycQ==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:19:20 UTC], ["id", 2]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 27ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 16:19:20 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"LbygRNd82GP02rveGhtwLI7726712mOr8lRTY7N232DQ4NvVuKugQ101pvQNpYT6El5QkcEeIcuAkusWl8IHUA==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:19:20 UTC], ["id", 3]] +  (3.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 4.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 24ms (Views: 21.2ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 16:19:21 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"VZLZ90kB2bVC8PD0rnPgJoLU4KIusTp7rEOkqqnNs0GozqJmJtahlesf7d65zRTwHnFrnRp1eBvehRzfjXlrcQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:19:21 UTC], ["id", 5]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 16:19:22 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"uG4nR1dT85SPIpss/QBdgal8i85+1/NB10g8Dv8faxVFMlzWOISLtCbNhgbqvqlXNdkA8UoTsSGljoR726uzJQ==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:19:22 UTC], ["id", 6]] +  (3.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 4.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 30ms (Views: 27.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-25 16:19:22 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"1J11WxSEaWKd06Q4ph9Qd1w7X212QtGN4COARRxLcNcpwQ7Ke1MRQjQ8uRKxoaShwJ7UUkKGk+2S5TgwOP+o5w==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:19:22 UTC], ["id", 10]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-25 16:19:23 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"Cbm4g88teWOdhQ5S4J8fLx/SOgb92EbSddbvnuGl9n705cMSoPoBQzRqE3j3Iev5g3exOckcBLIHEFfrxREuTg==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:19:23 UTC], ["id", 12]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:19:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 32ms (Views: 29.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 16:19:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 31ms (Views: 28.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 16:19:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 16:19:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 35ms (Views: 32.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 16:19:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.8ms) +Completed 200 OK in 29ms (Views: 26.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/10" for ::1 at 2017-03-25 16:19:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.7ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed.strftime("%m/%d/%Y") %>! Yay!

    + 14: <% else %> + 15:

    <%= @task.deadline.strftime("Complete by: %m/%d/%Y") %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___2482853104900709163_70215556316620' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (67.2ms) +Started GET "/tasks" for ::1 at 2017-03-25 16:19:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/10/toggle_complete" for ::1 at 2017-03-25 16:19:46 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"DSu5yU1KejlXq1EjYMiJ1XGtdN9Vg2mTF6P/XI51hTrwd8JYIp0CGf5ETAl3dn0D7Qj/4GFHK/NlZUcpqsFdCg==", "id"=>"10"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:19:46 UTC], ["id", 10]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 27ms (Views: 25.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/10" for ::1 at 2017-03-25 16:19:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/10" for ::1 at 2017-03-25 16:19:49 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"nbYc9+4NK0czGV6yRdAWrvufOgZjRAChdwcZA+JJv1tg6mdmgdpTZ5r2Q5hSbuJ4ZzqxOVeAQsEFwaF2xv1naw==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 10]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 16:19:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.9ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed.strftime("%m/%d/%Y") %>! Yay!

    + 14: <% else %> + 15:

    <%= @task.deadline.strftime("Complete by: %m/%d/%Y") %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___2482853104900709163_70215546964100' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.4ms) +Started GET "/tasks" for ::1 at 2017-03-25 16:19:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 32ms (Views: 28.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/toggle_complete" for ::1 at 2017-03-25 16:19:53 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"/5YONh7XEq7sq5ShL/Bed0iDqyVs3IOeo74EWukvpIgCynWncQBqjkVEiYs4Tqqh1CYgGlgYwf7ReLwvzZt8uA==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:19:53 UTC], ["id", 12]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 16:19:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/12" for ::1 at 2017-03-25 16:19:57 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"R95EauFt/QRaYKUyPMuHZ84+YxT/cT6hqu+hDJ2xzRO6gj/7jrqFJPOPuBgrdXOxUpvoK8u1fMHYKRl5uQUVIw==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 12]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:19:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-25 16:19:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (4.1ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 12: <% if @task.completed %> + 13:

    ✓ Task completed on <%= @task.completed.strftime("%m/%d/%Y") %>! Yay!

    + 14: <% else %> + 15:

    <%= @task.deadline.strftime("Complete by: %m/%d/%Y") %>

    + 16: <% end %> + 17: + 18:

    + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___2482853104900709163_70215581751520' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.1ms) +Started GET "/tasks" for ::1 at 2017-03-25 16:20:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/toggle_complete" for ::1 at 2017-03-25 16:20:02 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"h1VFNCgHwcUvCQO65u4yewHT4awX1mILBdoOMDGqY6h6CT6lR9C55YbmHpDxUMatnXZqkyMSIGt3HLZFFR67mA==", "id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:20:02 UTC], ["id", 13]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:20:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 30ms (Views: 27.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-25 16:20:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 35ms (Views: 32.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/13" for ::1 at 2017-03-25 16:20:04 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"dX1rQ33B5W5lnQPEYBhaNFP46XjFbczigJHhgPrchvyIIRDSEhadTsxyHu53pq7iz11iR/GpjoLyV1n13mhezA==", "id"=>"13"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.4ms) begin transaction + SQL (0.7ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 13]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 3.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:20:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-25 16:20:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=13): + +app/controllers/tasks_controller.rb:7:in `show' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.1ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.9ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 16:20:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 35ms (Views: 32.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:45:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 45ms (Views: 41.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:45:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 41ms (Views: 38.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:45:21 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"GIretf0bmhBxxJULw7eGGOmXtPPiU0rUAu5Crg+z7wPl1qUkksziMNgriCHUCXLOdTI/zNaXCLRwKPrbKwc3Mw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:45:21 UTC], ["id", 1]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:45:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (2.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.1ms) +Completed 200 OK in 38ms (Views: 31.0ms | ActiveRecord: 2.0ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:45:24 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"WZGzYb4fcKIi41Op4G8waeO0YqIJRuZtS7O1RB9mBHukzcjw0cgIgosMToP30cS/fxHpnT2CpA05dQ0xO9LcSw==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:45:24 UTC], ["id", 1]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:45:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 26ms (Views: 21.3ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:45:27 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"CZFXmOtAKhYt7rM6NlV9zfRy+Xab2btCeZc+/h2GWe30zSwJhJdSNoQBrhAh64kbaNdySa8d+SILUYaLOTKB3Q==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:45:27 UTC], ["id", 1]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:45:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 28ms (Views: 22.0ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:45:28 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"6iYe9/wYjXNGL5b4ECV4/393eyY+H64M1jnWE1cBI2MXemVmk8/1U+/Ai9IHm4wp49LwGQrb7Gyk/25mc7X7Uw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-25 23:45:28 UTC], ["id", 1]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:45:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 23ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 16:45:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 39ms (Views: 36.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 16:45:34 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"l+vavCH5u9ykDqEWzJzyJA7l35FWMGm2MrAQw+dbF+Jqt6EtTi7D/A3hvDzbIgbykkBUrmL0K9ZAdqi2w+/P0g==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:45:34 UTC], ["id", 5]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2017-03-25 16:45:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 16:45:37 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"ipwdJeA//zdHDj0OkmVZUFgGO9/EiIfzJVW9NMPXb7d3wGa0j+iHF+7hICSF262GxKOw4PBMxZNXkwVB52O3hw==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:45:37 UTC], ["id", 3]] +  (1.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2017-03-25 16:45:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/toggle_complete" for ::1 at 2017-03-25 16:45:38 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"1PyiDtHA1MMFZPhAac9snL1YaEv7qov61jibEtfs1OIpoNmfvhes46yL5Wp+cZhKIf3jdM9uyZqk/iNn81gM0g==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-25 23:45:38 UTC], ["id", 1]] +  (0.8ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 1.4ms) + + +Started GET "/" for ::1 at 2017-03-25 16:45:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 35ms (Views: 30.3ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 16:45:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 35ms (Views: 31.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 17:02:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 53ms (Views: 49.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 17:02:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 17:02:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 17:02:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 17:03:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 17:08:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 17:08:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (34.8ms) + Rendered tasks/edit.html.erb within layouts/application (38.0ms) +Completed 200 OK in 73ms (Views: 65.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1" for ::1 at 2017-03-25 17:08:08 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"CseFv7ohRfJIym0gOupH4RVFSL6LfBp/TWrvrp0snO33m/4u1fY90uElcAotVLM3ieDDgb+4WB8/rFfbuZhE3Q==", "task"=>{"name"=>"Wash dishes", "description"=>"Get them dishes washed! WASH ME HEYO WOO", "deadline"=>"2017-03-30"}, "commit"=>"Edit Task", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Get them dishes washed! WASH ME HEYO WOO"], ["updated_at", 2017-03-26 00:08:08 UTC], ["id", 1]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 5ms (ActiveRecord: 0.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 17:08:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 27ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/1" for ::1 at 2017-03-25 17:08:13 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"koKx3lQB21huG20GJTyAG4gwG/eFds9Dxg4/GCVzlJlv3spPO9ajeMf0cCwygnTNFJWQyLGyjSO0yIdtAcdMqQ==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:08:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 17:08:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 34ms (Views: 32.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 17:08:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 17:08:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 23ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 17:08:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 35ms (Views: 32.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/edit" for ::1 at 2017-03-25 17:08:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/edit.html.erb within layouts/application (4.0ms) +Completed 200 OK in 29ms (Views: 24.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 17:17:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 17:17:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 17:17:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/edit" for ::1 at 2017-03-25 17:17:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.7ms) + Rendered tasks/edit.html.erb within layouts/application (5.8ms) +Completed 200 OK in 42ms (Views: 39.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 17:33:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 58ms (Views: 55.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 17:33:19 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"S1rMAUwZRNAGo+KN7CH/zcL5K8SBqLFKCEWx5M+PNWm2BreQI8488K9M/6f7nwsbXlyg+7Vs8yp6gwmR6zvtWQ==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (3.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 00:33:19 UTC], ["id", 6]] +  (0.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 9ms (ActiveRecord: 4.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 17:33:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 17:33:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 35ms (Views: 33.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 17:33:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 17:33:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 46ms (Views: 44.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-25 17:33:47 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"DJyrcvc6LXKOtecCCm7fjKwORBenO+/AV+lqIact4MzxwNDjmO1VUida+igd0CtaMKvPKJP/raAlL9JUg5k4/A==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 00:33:47 UTC], ["id", 2]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2017-03-25 17:33:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 17:33:49 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"hfebYJ4et8KtVxu9wslZkkzK6oSC57qSeJrf+3enx9d4q+Dx8cnP4gS4BpfVd61E0G9hu7Yj+PIKXGeOUxMf5w==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 00:33:49 UTC], ["id", 5]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/" for ::1 at 2017-03-25 17:33:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 26ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 17:33:50 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"v7vZ1QogWmFoyKkA3V2SM+7ZusRiZ8ppOeGf+ECyUPxC56JEZfciQcEntCrK42blcnwx+1ajiAlLJyeNZAaIzA==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 00:33:50 UTC], ["id", 3]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2017-03-25 17:33:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 21ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 17:33:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 36ms (Views: 33.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 17:33:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 36ms (Views: 33.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-25 17:33:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.3ms) + Rendered tasks/edit.html.erb within layouts/application (4.7ms) +Completed 200 OK in 35ms (Views: 32.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 18:46:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 50ms (Views: 47.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-25 18:46:54 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.3ms) + Rendered tasks/edit.html.erb within layouts/application (8.0ms) +Completed 200 OK in 61ms (Views: 54.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 18:46:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.6ms) +Completed 200 OK in 46ms (Views: 42.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 18:47:01 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"3sJnN55cPZwPisosb0E+Br8XAHwikxRCvqr42USmMCEjnhym8YtFvKZl1wZ4/8rQI7KLQxZXViLMbECsYBLoEQ==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (1.8ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 01:47:01 UTC], ["id", 3]] +  (0.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/3 +Completed 302 Found in 5ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 18:47:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 20ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-25 18:47:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.4ms) + Rendered tasks/edit.html.erb within layouts/application (5.4ms) +Completed 200 OK in 42ms (Views: 39.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 18:47:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.5ms) +Completed 200 OK in 52ms (Views: 48.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 18:47:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 47ms (Views: 45.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 18:47:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 18:47:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 44ms (Views: 42.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:17:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.8ms) +Completed 200 OK in 44ms (Views: 38.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-25 19:17:34 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.0ms) + Rendered tasks/edit.html.erb within layouts/application (6.5ms) +Completed 200 OK in 45ms (Views: 42.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-25 19:17:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.4ms) + Rendered tasks/edit.html.erb within layouts/application (5.7ms) +Completed 200 OK in 32ms (Views: 30.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-25 19:18:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.0ms) + Rendered tasks/edit.html.erb within layouts/application (4.0ms) +Completed 200 OK in 27ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-25 19:18:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (3.4ms) +Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-25 19:18:31 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/edit.html.erb within layouts/application (4.3ms) +Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-25 19:19:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.4ms) + Rendered tasks/edit.html.erb within layouts/application (4.6ms) +Completed 200 OK in 29ms (Views: 26.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 19:19:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 45ms (Views: 42.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 19:19:08 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.2ms) + Rendered tasks/new.html.erb within layouts/application (4.4ms) +Completed 200 OK in 46ms (Views: 43.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2017-03-25 19:19:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 48ms (Views: 44.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 19:19:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 19:19:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 45ms (Views: 42.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:20:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 39ms (Views: 36.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:20:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 19:20:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (19.3ms) +Completed 200 OK in 46ms (Views: 43.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 19:20:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 37ms (Views: 34.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 19:20:51 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"OF1FejBOpRpDvDXxoqffkpHwPi8VPRHUSTHFw09wVfXFAT7rX5ndOupTKNu1GStEDVW1ECH5U7Q79322a8SNxQ==", "id"=>"5"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 02:20:51 UTC], ["id", 5]] +  (1.7ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 7ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 19:20:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/5/toggle_complete" for ::1 at 2017-03-25 19:20:53 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"mHbDB2nBk7obvjFbAZq1LURKAAmfVtvN1qh7Un+QPWtlKriWBhbrmrJRLHEWJEH72O+LNquSma2kbsMnWyTlWw==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 02:20:53 UTC], ["id", 5]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 19:20:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 27ms (Views: 20.7ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2017-03-25 19:20:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 43ms (Views: 41.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 19:20:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 42ms (Views: 40.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 19:21:08 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"6hSEy1YQSjhVoDSa3hqfJ50VdGOYjr6XDSHWFUohSfwXSP9aOccyGPxPKbDJpGvxAbD/XKxK/Pd/525gbpWRzA==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 02:21:08 UTC], ["id", 6]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 8ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 19:21:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 19.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 19:21:09 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"19wpG7pcN8dGDOhF6dU+k9bksgNQ/MzxnpEwoFvZfyoqgFKK1YtP5+/j9W/+a8pFSkE5PGQ4jpHsV4jVf22nGg==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 02:21:09 UTC], ["id", 6]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 19:21:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 19:21:09 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"UoIWQP1Yf6sadEOVnbokeCbxXStXjNYR7oAekOe2MSmv3m3Rko8Hi7ObXr+KBNCuulTWFGNIlHGcRqblwwLpGQ==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 02:21:09 UTC], ["id", 6]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 19:21:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 20ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 19:21:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 19:21:38 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"GG026JKMBrfBqV+LF/M/XzGJvF2h3qVGjc0tEPGXOWblMU15/Vt+l2hGQqEATcuJrSw3YpUa5yb/C5Vl1SPhVg==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 02:21:38 UTC], ["id", 6]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 8ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 19:21:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 21ms (Views: 18.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 19:21:40 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"UwQ31XR8MNcggwS/jcqIf+wTouDlRyLndZZ5VyytfqOuWExEG6tI94lsGZWadHypcLYp39GDYIcHUMEiCBmmkw==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 02:21:40 UTC], ["id", 6]] +  (1.8ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 9ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 19:21:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.4ms) +Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 19:21:40 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"4ScbP5+8IKRVD8quQ2BfR/+WcnQwXpVeyS1jezJel3wce2Cu8GtYhPzg14RU3quRYzP5SwSa1z6769sOFupPTA==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 02:21:40 UTC], ["id", 6]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 19:21:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 19:21:43 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"/WHp3cnNMvadduiQqjKyhpioJO/hXXF+KsIixzoLXvIAPZJMphpK1jSZ9bq9jEZQBA2v0NWZMx5YBJqyHr+Gwg==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (3.1ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 02:21:43 UTC], ["id", 6]] +  (3.0ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 11ms (ActiveRecord: 6.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 19:21:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 19:21:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 57ms (Views: 54.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 19:25:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 19:29:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.1ms) +Completed 200 OK in 39ms (Views: 36.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 19:29:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 66ms (Views: 61.9ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2017-03-25 19:30:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 40ms (Views: 37.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:30:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 36ms (Views: 32.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:46:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 33ms (Views: 29.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:47:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 28ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:47:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 28ms (Views: 25.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:48:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.8ms) +Completed 200 OK in 33ms (Views: 30.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:48:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 36ms (Views: 34.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:48:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 36ms (Views: 34.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:49:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.1ms) +Completed 200 OK in 30ms (Views: 27.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:49:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 27ms (Views: 25.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:49:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 41ms (Views: 37.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:49:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:49:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 28ms (Views: 25.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:51:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 30ms (Views: 27.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:52:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:57:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:57:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 27ms (Views: 25.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:59:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 29ms (Views: 26.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 19:59:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 37ms (Views: 34.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 20:00:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (4.0ms) +Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 20:01:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 27ms (Views: 25.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 20:01:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 28ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 20:01:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 85ms (Views: 81.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 20:06:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 20:06:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 61ms (Views: 59.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:09:12 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.5ms) + Rendered tasks/new.html.erb within layouts/application (7.0ms) +Completed 200 OK in 69ms (Views: 67.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:09:12 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.3ms) + Rendered tasks/new.html.erb within layouts/application (7.5ms) +Completed 200 OK in 40ms (Views: 38.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:09:20 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.8ms) + Rendered tasks/new.html.erb within layouts/application (5.9ms) +Completed 200 OK in 30ms (Views: 27.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:09:34 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.5ms) + Rendered tasks/new.html.erb within layouts/application (4.1ms) +Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:15:50 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.4ms) + Rendered tasks/new.html.erb within layouts/application (6.7ms) +Completed 200 OK in 33ms (Views: 31.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:15:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 38ms (Views: 35.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:15:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:16:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 20:16:28 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"g2E3YzBVG+hkcZHHsnuiKmfceQLqkdB1D3AdD7f7Wmd+PUzyX4JjyM2ejO2lxVb8+3nyPd5VkhV9tqV6k0+CVw==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 03:16:28 UTC], ["id", 3]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/3 +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:16:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 20:16:29 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"DCjdyzjEYyc2GCf3BYwyCpTepMPGDiDRDEMnJ5PtICPxdKZaVxMbB5/3Ot0SMsbcCHsv/PLKYrF+hZ9St1n4Ew==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 03:16:29 UTC], ["id", 3]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/3 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:16:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:16:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 31ms (Views: 29.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 20:16:38 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"bcSu31LfTNUX0xR01iYhDvi1StyT0ZMSaamuTt7Z0bSQmNVOPQg09b48CV7BmNXYZBDB46cV0XIbbxY7+m0JhA==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 03:16:38 UTC], ["id", 3]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/3 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:16:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3/toggle_complete" for ::1 at 2017-03-25 20:16:39 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"27HINzzf5/ouG8C5k+O+QEbtus+jq3eOvqiITG6CHZMm7bOmUwif2of03ZOEXUqW2kgx8JdvNe7MbjA5SjbFow==", "id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 03:16:39 UTC], ["id", 3]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:43) +Redirected to http://localhost:3000/tasks/3 +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:16:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 20:16:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 41ms (Views: 38.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 20:16:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 44ms (Views: 40.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 20:16:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 47ms (Views: 45.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 20:17:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:18:01 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (0.9ms) + Rendered tasks/new.html.erb within layouts/application (3.5ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/addieland/ada/projects/TaskList/app/views/tasks/_form.html.erb:1: syntax error, unexpected '=' +ppend= form_for @task, class="main-form" do |f| @output_buf + ^ +/Users/addieland/ada/projects/TaskList/app/views/tasks/_form.html.erb:1: syntax error, unexpected keyword_do_block, expecting keyword_end +or @task, class="main-form" do |f| @output_buffer.safe_appen + ^ +/Users/addieland/ada/projects/TaskList/app/views/tasks/_form.html.erb:14: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/_form.html.erb:1: syntax error, unexpected '=' +app/views/tasks/_form.html.erb:1: syntax error, unexpected keyword_do_block, expecting keyword_end +app/views/tasks/_form.html.erb:14: syntax error, unexpected keyword_ensure, expecting end-of-input +app/views/tasks/new.html.erb:6:in `_app_views_tasks_new_html_erb___3375847703332865436_70215583325140' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.7ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.8ms) +Started GET "/tasks/new" for ::1 at 2017-03-25 20:18:14 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.3ms) + Rendered tasks/new.html.erb within layouts/application (6.8ms) +Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:19:33 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/new.html.erb within layouts/application (4.1ms) +Completed 200 OK in 32ms (Views: 30.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:20:47 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.9ms) + Rendered tasks/new.html.erb within layouts/application (4.4ms) +Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 20:20:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=1): + +app/controllers/tasks_controller.rb:20:in `edit' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.3ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.9ms) +Started GET "/tasks/2/edit" for ::1 at 2017-03-25 20:21:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (3.5ms) +Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-25 20:22:09 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/edit.html.erb within layouts/application (4.1ms) +Completed 200 OK in 33ms (Views: 31.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 20:22:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 39ms (Views: 35.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:22:18 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/new.html.erb within layouts/application (5.3ms) +Completed 200 OK in 43ms (Views: 41.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:22:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:24:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 20:24:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 34ms (Views: 32.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 20:24:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 41ms (Views: 38.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:24:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 53ms (Views: 50.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-25 20:24:51 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.2ms) + Rendered tasks/edit.html.erb within layouts/application (7.5ms) +Completed 200 OK in 36ms (Views: 32.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:24:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 47ms (Views: 43.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:26:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 28ms (Views: 25.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:26:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:26:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 34ms (Views: 31.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:27:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 28ms (Views: 26.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:27:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 28ms (Views: 26.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-25 20:27:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.6ms) + Rendered tasks/edit.html.erb within layouts/application (4.8ms) +Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:27:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 43ms (Views: 40.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 20:27:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 48ms (Views: 37.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:27:39 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.2ms) + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 37ms (Views: 35.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 20:27:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"VkUoTo3dyw+Wv/7avgIOBINsqW8HI+G87s/2atd2xKRvW3BnnHq3R1UDm0BiZjwNe2gPKCdA2HG4TeFDTjqbyg==", "task"=>{"name"=>"Walk the Dog", "description"=>"Doggies need walks!", "deadline"=>"2017-03-26"}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "deadline", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Walk the Dog"], ["description", "Doggies need walks!"], ["deadline", Sun, 26 Mar 2017], ["created_at", 2017-03-26 03:27:58 UTC], ["updated_at", 2017-03-26 03:27:58 UTC]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:27:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 20:28:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.4ms) +Completed 200 OK in 36ms (Views: 33.6ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/5" for ::1 at 2017-03-25 20:28:09 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"Ida4YOi1J0kW0hxyk2v4klyhigIgPeSpv9p/1A+WXfHcisPxh2Jfab89AViE1QxEwAQBPRT5psnNHMehKyKFwQ==", "id"=>"5"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.1ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 5]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:28:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:28:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.8ms) +Completed 200 OK in 38ms (Views: 35.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3/edit" for ::1 at 2017-03-25 20:28:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.8ms) + Rendered tasks/edit.html.erb within layouts/application (7.1ms) +Completed 200 OK in 37ms (Views: 34.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3" for ::1 at 2017-03-25 20:28:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ePRzw0vQivd7tspr/nUeOB5R3DlCKOVw3vDI7xY7asjrg1wFgYFugN+cqYkgC+/TgHA4WxixR+EESYPwYKzNiQ==", "task"=>{"name"=>"Make dinner", "description"=>"Food is good! Yum!", "deadline"=>"2017-03-22"}, "commit"=>"Edit Task", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Food is good! Yum!"], ["updated_at", 2017-03-26 03:28:26 UTC], ["id", 3]] +  (6.6ms) commit transaction +Redirected to http://localhost:3000/tasks/3 +Completed 302 Found in 11ms (ActiveRecord: 7.2ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 20:28:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 24ms (Views: 20.0ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2017-03-25 20:28:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 20:48:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 31ms (Views: 29.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 20:50:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 20:50:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 35ms (Views: 32.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 20:50:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 52ms (Views: 49.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 20:50:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 46ms (Views: 42.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 20:51:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 42ms (Views: 40.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 20:52:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 35ms (Views: 32.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2017-03-25 20:52:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 29ms (Views: 27.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:52:51 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.8ms) + Rendered tasks/new.html.erb within layouts/application (6.0ms) +Completed 200 OK in 37ms (Views: 35.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 20:52:56 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ny0yXDXcb8mdzdb81kkwUQNoeelOElmqruwlXa7B6p4OM2p1JHsTgV5xs2YKLQJY+2zfrm5xYGf4bjJ0N4218A==", "task"=>{"name"=>"test", "description"=>"test", "deadline"=>""}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "test"], ["description", "test"], ["created_at", 2017-03-26 03:52:56 UTC], ["updated_at", 2017-03-26 03:52:56 UTC]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:52:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 29ms (Views: 25.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/15" for ::1 at 2017-03-25 20:52:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.3ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 16: <% if @task.completed %> + 17:

    <%= @task.completed.strftime("Completed on: %m/%d/%Y") %> ✓

    + 18: <% else %> + 19:

    <%= @task.deadline.strftime("Deadline: %m/%d/%Y") %>

    + 20: <% end %> + 21:

    + 22: + +app/views/tasks/show.html.erb:19:in `_app_views_tasks_show_html_erb___2482853104900709163_70215569500760' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (15.2ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (71.8ms) +Started GET "/tasks" for ::1 at 2017-03-25 20:53:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 28ms (Views: 26.2ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/15" for ::1 at 2017-03-25 20:53:15 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"EEbNCCT39tKkXDT09EPLlT+tu5qaOGz5K1LJRHjTSCztGraZSyCO8g2zKd7j/T9Dowgwpa78LplZlHExXGeQHA==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 15]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:53:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 25ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 20:54:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.7ms) +Completed 200 OK in 43ms (Views: 40.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/edit" for ::1 at 2017-03-25 20:54:28 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.2ms) + Rendered tasks/edit.html.erb within layouts/application (21.5ms) +Completed 200 OK in 56ms (Views: 52.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6" for ::1 at 2017-03-25 20:54:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"L1YMP+r0DZGNSR3IU/vLkZfhOL2d1LfJJIBE+UA7mrFGdSjONxODTC7U6Ru2HK1vCCpFl/G7vW7vC4Ajc9wcIg==", "task"=>{"name"=>"Polish the silverware", "description"=>"polish polish!", "deadline"=>""}, "commit"=>"Edit Task", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "deadline" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", nil], ["updated_at", 2017-03-26 03:54:39 UTC], ["id", 6]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 20:54:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.6ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 16: <% if @task.completed %> + 17:

    <%= @task.completed.strftime("Completed on: %m/%d/%Y") %> ✓

    + 18: <% else %> + 19:

    <%= @task.deadline.strftime("Deadline: %m/%d/%Y") %>

    + 20: <% end %> + 21:

    + 22: + +app/views/tasks/show.html.erb:19:in `_app_views_tasks_show_html_erb___2482853104900709163_70215583371180' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (64.3ms) +Started GET "/tasks/6" for ::1 at 2017-03-25 20:54:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (9.0ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 16: <% if @task.completed %> + 17:

    <%= @task.completed.strftime("Completed on: %m/%d/%Y") %> ✓

    + 18: <% else %> + 19:

    <%= @task.deadline.strftime("Deadline: %m/%d/%Y") %>

    + 20: <% end %> + 21:

    + 22: + +app/views/tasks/show.html.erb:19:in `_app_views_tasks_show_html_erb___2482853104900709163_70215554257100' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.4ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.9ms) +Started GET "/tasks/6/edit" for ::1 at 2017-03-25 20:54:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.9ms) + Rendered tasks/edit.html.erb within layouts/application (6.3ms) +Completed 200 OK in 26ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6" for ::1 at 2017-03-25 20:54:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"TOrnp4k8XdacB/D80Yjr3z+l5TqyT5LVPpv1tUn3Kk2xtpw25usl9jXo7dbGNh8JowBuBYaL0LVMXU3AbUPyfQ==", "task"=>{"name"=>"Polish the silverware", "description"=>"polish polish!", "deadline"=>"2017-03-23"}, "commit"=>"Edit Task", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "deadline" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", Thu, 23 Mar 2017], ["updated_at", 2017-03-26 03:54:59 UTC], ["id", 6]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 6ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 20:54:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 26ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/edit" for ::1 at 2017-03-25 20:57:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.5ms) + Rendered tasks/edit.html.erb within layouts/application (4.2ms) +Completed 200 OK in 39ms (Views: 21.1ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/6" for ::1 at 2017-03-25 20:57:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"wBNCfhEDNHMwccKVzGRl1HGAD4HBjK5Kfo/kTcx/z1GpMGaPzOS6rpPsNkYpgwMq7ktyq63jpO21BCCX/5hJwg==", "task"=>{"name"=>"Polish the silverware", "description"=>"polish polish!", "deadline"=>"2017-03-31"}, "commit"=>"Edit Task", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "deadline" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", Fri, 31 Mar 2017], ["updated_at", 2017-03-26 03:57:18 UTC], ["id", 6]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 7ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 20:57:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 26ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 20:57:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (15.3ms) +Completed 200 OK in 52ms (Views: 47.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:57:46 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.5ms) + Rendered tasks/new.html.erb within layouts/application (6.6ms) +Completed 200 OK in 46ms (Views: 44.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 20:57:48 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"yZUUr4jsh5vAI/cn6D9VjTgB3sdG4hNZGeytvK0l3Jrwi0yGmUv70wOfkr00W2eEwAV4gGaBKpRPbrqVNGmD9A==", "task"=>{"name"=>"", "description"=>"", "deadline"=>""}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", ""], ["description", ""], ["created_at", 2017-03-26 03:57:48 UTC], ["updated_at", 2017-03-26 03:57:48 UTC]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:57:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 37ms (Views: 35.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/16" for ::1 at 2017-03-25 20:57:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (4.3ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 16: <% if @task.completed %> + 17:

    <%= @task.completed.strftime("Completed on: %m/%d/%Y") %> ✓

    + 18: <% else %> + 19:

    <%= @task.deadline.strftime("Deadline: %m/%d/%Y") %>

    + 20: <% end %> + 21:

    + 22: + +app/views/tasks/show.html.erb:19:in `_app_views_tasks_show_html_erb___2482853104900709163_70215553503500' + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/addieland/.rvm/gems/ruby-2.4.0@TaskListRails/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (62.5ms) +Started DELETE "/tasks/16" for ::1 at 2017-03-25 20:58:09 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"f46KPtF4BhDz0P3cSAqDi7enNe1eK2c8N5YW7gagbFiC0vGvvq9+MFo/4PZftHddKwK+0mrvJVxFUK6bIhS0aA==", "id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 16]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:58:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 30ms (Views: 25.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:58:41 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/new.html.erb within layouts/application (4.1ms) +Completed 200 OK in 38ms (Views: 20.9ms | ActiveRecord: 0.7ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 20:58:45 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SDq0fsj1eC8bFgA8US8eVHKgd10FwFQs2jZNqYvdeXxxJOxX2VIEZ9iqZaaNSyxdiqTRGiWjbeGMtFqAEpEmEg==", "task"=>{"name"=>"asdf", "description"=>"", "deadline"=>""}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "asdf"], ["description", ""], ["created_at", 2017-03-26 03:58:45 UTC], ["updated_at", 2017-03-26 03:58:45 UTC]] +  (5.6ms) commit transaction +  (0.2ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "deadline" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 03:58:45 UTC], ["id", 17]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 15ms (ActiveRecord: 7.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:58:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 23ms (Views: 19.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/17" for ::1 at 2017-03-25 20:58:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 38ms (Views: 34.1ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/17" for ::1 at 2017-03-25 20:58:57 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"40Rk6KvGAeJd5JCP4cxM+YzCTNk3ya1+gYwSb5/IufUeGB95xBF5wvQLjaX2crgvEGfH5gMN7x7zSqoau3xhxQ==", "id"=>"17"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 17]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:58:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:59:11 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.7ms) + Rendered tasks/new.html.erb within layouts/application (5.0ms) +Completed 200 OK in 33ms (Views: 31.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 20:59:28 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7W6Z1UeuwgwWm870GhIPsTmNCbuctyH/yVARDEwChBvUcMH8Vgm+RNUnq27Gdj24wYmv/LzUGDKf0gYl1U7bdQ==", "task"=>{"name"=>"Do Homework", "description"=>"study study yay!", "deadline"=>"2017-03-26"}, "commit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.7ms) INSERT INTO "tasks" ("name", "description", "deadline", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Do Homework"], ["description", "study study yay!"], ["deadline", Sun, 26 Mar 2017], ["created_at", 2017-03-26 03:59:28 UTC], ["updated_at", 2017-03-26 03:59:28 UTC]] +  (2.0ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 11ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 20:59:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 20:59:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 34ms (Views: 31.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 20:59:37 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"pVMI/n8bZPkeAc13xViqRAdnGqD75MNWGIG7Y55PsnpYD3NvEMwc2bfu0F3S5l6Sm8KRn88ggTZqRwMWuvtqSg==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 03:59:37 UTC], ["id", 6]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:45) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 20:59:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 21ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 20:59:40 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"zzLWTEBrIRMyO3gdy670/H87v/zdJYY/Lx9pM8yWBisybq3dL7xZM5vUZTfcEAAq4540w+nhxF9d2dFG6CLeGw==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 03:59:40 UTC], ["id", 6]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:45) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 20:59:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 21ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 20:59:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 37ms (Views: 35.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/14" for ::1 at 2017-03-25 20:59:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 14], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 49ms (Views: 44.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 20:59:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 42ms (Views: 38.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 20:59:55 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.7ms) + Rendered tasks/new.html.erb within layouts/application (5.3ms) +Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2017-03-25 20:59:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 45ms (Views: 41.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 21:00:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 41ms (Views: 37.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-25 21:00:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 151ms (Views: 145.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 21:00:17 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.0ms) + Rendered tasks/new.html.erb within layouts/application (6.1ms) +Completed 200 OK in 55ms (Views: 50.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 21:01:08 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.0ms) + Rendered tasks/new.html.erb within layouts/application (5.2ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 21:01:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 34ms (Views: 31.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 21:01:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 21:01:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 21ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 21:01:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 43ms (Views: 41.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 21:01:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.2ms) +Completed 200 OK in 35ms (Views: 33.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 21:02:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 38ms (Views: 36.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-25 21:02:09 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"EgrMZQLKlj2Ierk14tim0WjoW7xW27BbHmU/jpP6IOzvVrf0bR3uHSGVpB/1ZlIH9E3Qg2If8jtso4f7t0743A==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 04:02:09 UTC], ["id", 2]] +  (3.1ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:45) +Redirected to http://localhost:3000/tasks/2 +Completed 302 Found in 7ms (ActiveRecord: 3.8ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 21:02:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-25 21:02:10 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"aGyTaRTYG0ZgiffT+1nBoKFQ25hgwZD6i3a0FMWMGCKVMOj4ew9jZslm6vns5zV2PfVQp1QF0pr5sAxh4TjAEg==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 04:02:10 UTC], ["id", 2]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:45) +Redirected to http://localhost:3000/tasks/2 +Completed 302 Found in 9ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 21:02:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 29ms (Views: 26.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-25 21:02:11 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"bj9eLA+nEzpOGofaJ+A6/99qaaEdMfRV4uy869rxGPyTYyW9YHBrGuf1mvAwXs4pQ8/inin1tjWQKgSe/kXAzA==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 04:02:11 UTC], ["id", 2]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:45) +Redirected to http://localhost:3000/tasks/2 +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 21:02:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/2/toggle_complete" for ::1 at 2017-03-25 21:02:12 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"3cKqItFLTDOZErB7W84PVWKEBOwt3uXD169naVRx3VYgntGzvpw0EzD9rVFMcPuD/iGP0xkap6Olad8ccMUFZg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 04:02:12 UTC], ["id", 2]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:45) +Redirected to http://localhost:3000/tasks/2 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 21:02:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 21:02:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/18" for ::1 at 2017-03-25 21:02:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 36ms (Views: 33.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 21:04:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 44ms (Views: 41.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 21:04:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.4ms) +Completed 200 OK in 31ms (Views: 29.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 21:04:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 46ms (Views: 42.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 21:04:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 41ms (Views: 37.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 21:04:24 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"1aA0yPoLEmnW2teKWTa6E3oX0lUI0F1kaxeCL8SoKb8o/E9ZldxqSX81yqBOiE7F5rJZajwUHwQZ0Tpa4Bzxjw==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 04:04:24 UTC], ["id", 6]] +  (1.6ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:45) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 21:04:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 21:04:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 21:04:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 41ms (Views: 38.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/edit" for ::1 at 2017-03-25 21:04:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.5ms) + Rendered tasks/edit.html.erb within layouts/application (4.6ms) +Completed 200 OK in 38ms (Views: 35.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6" for ::1 at 2017-03-25 21:04:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"CNYUaBVg8WjfhMjEAY39B7YRz8PXSA9WGKYDm5el4flh9TCZyId/tXwZPBfkapv5Kdqy6bsnBfHTLcdBpEJnag==", "task"=>{"name"=>"Polish the silverware", "description"=>"polish polish polish!", "deadline"=>"2017-03-31"}, "commit"=>"Edit Task", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "polish polish polish!"], ["updated_at", 2017-03-26 04:04:40 UTC], ["id", 6]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 5ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 21:04:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6/edit" for ::1 at 2017-03-25 21:04:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.8ms) + Rendered tasks/edit.html.erb within layouts/application (5.5ms) +Completed 200 OK in 40ms (Views: 37.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 21:04:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 44ms (Views: 40.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/toggle_complete" for ::1 at 2017-03-25 21:04:55 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"27x40rSdg5PsxJ7Vk52Jg0aIBXa/rnAHlXwW+Y+8AvAm4AND20r7s0Urg/+EI31V2i2OSYtqMmfnuq6MqwjawA==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.7ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 04:04:55 UTC], ["id", 6]] +  (1.5ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:45) +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 10ms (ActiveRecord: 4.4ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 21:04:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2017-03-25 21:04:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 43ms (Views: 40.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 21:05:06 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.9ms) + Rendered tasks/new.html.erb within layouts/application (5.7ms) +Completed 200 OK in 36ms (Views: 34.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 21:05:10 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"eYusSi/Pl8ZtsxX3gv897/AiBaAUn41XFgwJDFNYDBJAlfRjPmjrjq4PcG1emw/mCCaj5zT8tJpAjh4lyhRTfA==", "task"=>{"name"=>"test", "description"=>"TEST", "deadline"=>""}, "commit"=>"Add Task"} +  (0.5ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "test"], ["description", "TEST"], ["created_at", 2017-03-26 04:05:10 UTC], ["updated_at", 2017-03-26 04:05:10 UTC]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "deadline" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["deadline", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 04:05:10 UTC], ["id", 19]] +  (0.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 21:05:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 28ms (Views: 24.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/19" for ::1 at 2017-03-25 21:05:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.4ms) +Completed 200 OK in 43ms (Views: 40.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/19/toggle_complete" for ::1 at 2017-03-25 21:05:15 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"9glek2A/Jv0TKNHspQJJRv3QdUM2yQxm2Gs0QeqNx94LVSUCD+he3brHzMayvL2QYXX+fAINTgaqrYw0zjkf7g==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", Sat, 25 Mar 2017], ["updated_at", 2017-03-26 04:05:15 UTC], ["id", 19]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:45) +Redirected to http://localhost:3000/tasks/19 +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks/19" for ::1 at 2017-03-25 21:05:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/19/toggle_complete" for ::1 at 2017-03-25 21:05:16 -0700 +Processing by TasksController#toggle_complete as HTML + Parameters: {"authenticity_token"=>"N5qhe2GEVfEwn8OAyz9vO9pAtTnSEU31g8+El8AFeSrKxtrqDlMt0Zlw3qrcgZvtRuU+BubVD5XxCTzi5LGhGg==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", 2017-03-26 04:05:16 UTC], ["id", 19]] +  (1.4ms) commit transaction +DEPRECATION WARNING: `redirect_to :back` is deprecated and will be removed from Rails 5.1. Please use `redirect_back(fallback_location: fallback_location)` where `fallback_location` represents the location to use if the request has no HTTP referer information. (called from toggle_complete at /Users/addieland/ada/projects/TaskList/app/controllers/tasks_controller.rb:45) +Redirected to http://localhost:3000/tasks/19 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks/19" for ::1 at 2017-03-25 21:05:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/19" for ::1 at 2017-03-25 21:05:18 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"QZc1Z76eKzktruIuhYukheZMUg0JvICr0J0oCNVMDCS8y0720UlTGYRB/wSSNVBTeunZMj14wsuiW5B98fjUFA==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 19]] +  (3.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 11ms (ActiveRecord: 4.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 21:05:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 23ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + 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/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png new file mode 100644 index 000000000..e69de29bb diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 000000000..e69de29bb diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 000000000..e69de29bb diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 000000000..3c9c7c01f --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,5 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file +# +# To ban all spiders from the entire site uncomment the next two lines: +# User-agent: * +# Disallow: / diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb new file mode 100644 index 000000000..67683c951 --- /dev/null +++ b/test/controllers/tasks_controller_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class TasksControllerTest < ActionDispatch::IntegrationTest + test "should get index" do + get tasks_index_url + assert_response :success + end + +end diff --git a/test/fixtures/.keep b/test/fixtures/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/tasks.yml b/test/fixtures/tasks.yml new file mode 100644 index 000000000..363d59890 --- /dev/null +++ b/test/fixtures/tasks.yml @@ -0,0 +1,13 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + description: + deadline: 2017-03-21 13:59:38 + completed: false + +two: + name: MyString + description: + deadline: 2017-03-21 13:59:38 + completed: false diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/task_test.rb b/test/models/task_test.rb new file mode 100644 index 000000000..3ca215970 --- /dev/null +++ b/test/models/task_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TaskTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 000000000..92e39b2d7 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,10 @@ +ENV['RAILS_ENV'] ||= 'test' +require File.expand_path('../../config/environment', __FILE__) +require 'rails/test_help' + +class ActiveSupport::TestCase + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... +end diff --git a/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep new file mode 100644 index 000000000..e69de29bb