From a4990f9889562c086aea4b30d1364a6b116040de Mon Sep 17 00:00:00 2001 From: Nicole Iwasaki Date: Thu, 21 Apr 2016 16:33:04 -0700 Subject: [PATCH 1/8] I'm the worst --- Gemfile | 47 + Gemfile.lock | 160 + README.rdoc | 28 + Rakefile | 6 + app/assets/images/.keep | 0 app/assets/javascripts/application.js | 16 + app/assets/javascripts/tasks.coffee | 3 + app/assets/stylesheets/application.css | 231 + app/assets/stylesheets/tasks.scss | 3 + app/controllers/application_controller.rb | 5 + app/controllers/concerns/.keep | 0 app/controllers/tasks_controller.rb | 65 + app/helpers/application_helper.rb | 2 + app/helpers/tasks_helper.rb | 2 + app/mailers/.keep | 0 app/models/.keep | 0 app/models/concerns/.keep | 0 app/models/task.rb | 3 + app/views/layouts/application.html.erb | 16 + app/views/tasks/index.html.erb | 22 + app/views/tasks/new.html.erb | 10 + app/views/tasks/taskpage.html.erb | 7 + bin/bundle | 3 + bin/rails | 9 + bin/rake | 9 + bin/setup | 29 + bin/spring | 15 + config.ru | 4 + config/application.rb | 26 + config/boot.rb | 3 + config/database.yml | 25 + config/environment.rb | 5 + config/environments/development.rb | 41 + config/environments/production.rb | 79 + config/environments/test.rb | 42 + config/initializers/assets.rb | 11 + config/initializers/backtrace_silencers.rb | 7 + config/initializers/cookies_serializer.rb | 3 + .../initializers/filter_parameter_logging.rb | 4 + config/initializers/inflections.rb | 16 + config/initializers/mime_types.rb | 4 + config/initializers/session_store.rb | 3 + config/initializers/wrap_parameters.rb | 14 + config/locales/en.yml | 23 + config/routes.rb | 81 + config/secrets.yml | 22 + db/development.sqlite3 | Bin 0 -> 20480 bytes db/migrate/20160419204601_create_tasks.rb | 13 + db/schema.rb | 26 + db/seeds.rb | 27 + lib/assets/.keep | 0 lib/tasks/.keep | 0 log/.keep | 0 log/development.log | 7636 +++++++++++++++++ public/404.html | 67 + public/422.html | 67 + public/500.html | 66 + public/favicon.ico | 0 public/robots.txt | 5 + test/controllers/.keep | 0 test/controllers/tasks_controller_test.rb | 7 + test/fixtures/.keep | 0 test/fixtures/tasks.yml | 15 + test/helpers/.keep | 0 test/integration/.keep | 0 test/mailers/.keep | 0 test/models/.keep | 0 test/models/task_test.rb | 7 + test/test_helper.rb | 10 + vendor/assets/javascripts/.keep | 0 vendor/assets/stylesheets/.keep | 0 71 files changed, 9050 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 README.rdoc create mode 100644 Rakefile create mode 100644 app/assets/images/.keep create mode 100644 app/assets/javascripts/application.js create mode 100644 app/assets/javascripts/tasks.coffee create mode 100644 app/assets/stylesheets/application.css create mode 100644 app/assets/stylesheets/tasks.scss create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/concerns/.keep create mode 100644 app/controllers/tasks_controller.rb create mode 100644 app/helpers/application_helper.rb create mode 100644 app/helpers/tasks_helper.rb create mode 100644 app/mailers/.keep create mode 100644 app/models/.keep create mode 100644 app/models/concerns/.keep create mode 100644 app/models/task.rb create mode 100644 app/views/layouts/application.html.erb create mode 100644 app/views/tasks/index.html.erb create mode 100644 app/views/tasks/new.html.erb create mode 100644 app/views/tasks/taskpage.html.erb create mode 100755 bin/bundle create mode 100755 bin/rails create mode 100755 bin/rake create mode 100755 bin/setup create mode 100755 bin/spring create mode 100644 config.ru create mode 100644 config/application.rb create mode 100644 config/boot.rb create mode 100644 config/database.yml create mode 100644 config/environment.rb create mode 100644 config/environments/development.rb create mode 100644 config/environments/production.rb create mode 100644 config/environments/test.rb create mode 100644 config/initializers/assets.rb create mode 100644 config/initializers/backtrace_silencers.rb create mode 100644 config/initializers/cookies_serializer.rb create mode 100644 config/initializers/filter_parameter_logging.rb create mode 100644 config/initializers/inflections.rb create mode 100644 config/initializers/mime_types.rb create mode 100644 config/initializers/session_store.rb create mode 100644 config/initializers/wrap_parameters.rb create mode 100644 config/locales/en.yml create mode 100644 config/routes.rb create mode 100644 config/secrets.yml create mode 100644 db/development.sqlite3 create mode 100644 db/migrate/20160419204601_create_tasks.rb create mode 100644 db/schema.rb create mode 100644 db/seeds.rb create mode 100644 lib/assets/.keep create mode 100644 lib/tasks/.keep create mode 100644 log/.keep create mode 100644 log/development.log create mode 100644 public/404.html create mode 100644 public/422.html create mode 100644 public/500.html create mode 100644 public/favicon.ico create mode 100644 public/robots.txt create mode 100644 test/controllers/.keep create mode 100644 test/controllers/tasks_controller_test.rb create mode 100644 test/fixtures/.keep create mode 100644 test/fixtures/tasks.yml create mode 100644 test/helpers/.keep create mode 100644 test/integration/.keep create mode 100644 test/mailers/.keep create mode 100644 test/models/.keep create mode 100644 test/models/task_test.rb create mode 100644 test/test_helper.rb create mode 100644 vendor/assets/javascripts/.keep create mode 100644 vendor/assets/stylesheets/.keep diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..d0ca1fdd6 --- /dev/null +++ b/Gemfile @@ -0,0 +1,47 @@ +source 'https://rubygems.org' + + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '4.2.6' +# Use sqlite3 as the database for Active Record +gem 'sqlite3' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' +# Use CoffeeScript for .coffee assets and views +gem 'coffee-rails', '~> 4.1.0' +# See https://github.com/rails/execjs#readme for more supported runtimes +# gem 'therubyracer', platforms: :ruby + +# Use jquery as the JavaScript library +gem 'jquery-rails' +# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks +gem 'turbolinks' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.0' +# bundle exec rake doc:rails generates the API under doc/api. +gem 'sdoc', '~> 0.4.0', group: :doc + +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use Unicorn as the app server +# gem 'unicorn' + +# Use Capistrano for deployment +# gem 'capistrano-rails', group: :development + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug' +end + +group :development do + # Access an IRB console on exception pages or by using <%= console %> in views + gem 'web-console', '~> 2.0' + + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' +end + diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..c45949a77 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,160 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.2.6) + actionpack (= 4.2.6) + actionview (= 4.2.6) + activejob (= 4.2.6) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 1.0, >= 1.0.5) + actionpack (4.2.6) + actionview (= 4.2.6) + activesupport (= 4.2.6) + rack (~> 1.6) + rack-test (~> 0.6.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (4.2.6) + activesupport (= 4.2.6) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + activejob (4.2.6) + activesupport (= 4.2.6) + globalid (>= 0.3.0) + activemodel (4.2.6) + activesupport (= 4.2.6) + builder (~> 3.1) + activerecord (4.2.6) + activemodel (= 4.2.6) + activesupport (= 4.2.6) + arel (~> 6.0) + activesupport (4.2.6) + i18n (~> 0.7) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + arel (6.0.3) + binding_of_caller (0.7.2) + debug_inspector (>= 0.0.1) + builder (3.2.2) + byebug (8.2.4) + coffee-rails (4.1.1) + coffee-script (>= 2.2.0) + railties (>= 4.0.0, < 5.1.x) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.10.0) + concurrent-ruby (1.0.1) + debug_inspector (0.0.2) + erubis (2.7.0) + execjs (2.6.0) + globalid (0.3.6) + activesupport (>= 4.1.0) + i18n (0.7.0) + jbuilder (2.4.1) + activesupport (>= 3.0.0, < 5.1) + multi_json (~> 1.2) + jquery-rails (4.1.1) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + json (1.8.3) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.4) + mime-types (>= 1.16, < 4) + mime-types (3.0) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0221) + mini_portile2 (2.0.0) + minitest (5.8.4) + multi_json (1.11.2) + nokogiri (1.6.7.2) + mini_portile2 (~> 2.0.0.rc2) + rack (1.6.4) + rack-test (0.6.3) + rack (>= 1.0) + rails (4.2.6) + actionmailer (= 4.2.6) + actionpack (= 4.2.6) + actionview (= 4.2.6) + activejob (= 4.2.6) + activemodel (= 4.2.6) + activerecord (= 4.2.6) + activesupport (= 4.2.6) + bundler (>= 1.3.0, < 2.0) + railties (= 4.2.6) + sprockets-rails + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.7) + activesupport (>= 4.2.0.beta, < 5.0) + nokogiri (~> 1.6.0) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + railties (4.2.6) + actionpack (= 4.2.6) + activesupport (= 4.2.6) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (11.1.2) + rdoc (4.2.2) + json (~> 1.4) + sass (3.4.22) + sass-rails (5.0.4) + railties (>= 4.0.0, < 5.0) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + sdoc (0.4.1) + json (~> 1.7, >= 1.7.7) + rdoc (~> 4.0) + spring (1.7.1) + sprockets (3.6.0) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.0.4) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + sqlite3 (1.3.11) + thor (0.19.1) + thread_safe (0.3.5) + tilt (2.0.2) + turbolinks (2.5.3) + coffee-rails + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (3.0.0) + execjs (>= 0.3.0, < 3) + web-console (2.3.0) + activemodel (>= 4.0) + binding_of_caller (>= 0.7.2) + railties (>= 4.0) + sprockets-rails (>= 2.0, < 4.0) + +PLATFORMS + ruby + +DEPENDENCIES + byebug + coffee-rails (~> 4.1.0) + jbuilder (~> 2.0) + jquery-rails + rails (= 4.2.6) + sass-rails (~> 5.0) + sdoc (~> 0.4.0) + spring + sqlite3 + turbolinks + uglifier (>= 1.3.0) + web-console (~> 2.0) + +BUNDLED WITH + 1.11.2 diff --git a/README.rdoc b/README.rdoc new file mode 100644 index 000000000..dd4e97e22 --- /dev/null +++ b/README.rdoc @@ -0,0 +1,28 @@ +== README + +This README would normally document whatever steps are necessary to get the +application up and running. + +Things you may want to cover: + +* Ruby version + +* System dependencies + +* Configuration + +* Database creation + +* Database initialization + +* How to run the test suite + +* Services (job queues, cache servers, search engines, etc.) + +* Deployment instructions + +* ... + + +Please feel free to use a different markup language if you do not plan to run +rake doc:app. diff --git a/Rakefile b/Rakefile new file mode 100644 index 000000000..ba6b733dd --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require File.expand_path('../config/application', __FILE__) + +Rails.application.load_tasks diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js new file mode 100644 index 000000000..e07c5a830 --- /dev/null +++ b/app/assets/javascripts/application.js @@ -0,0 +1,16 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, +// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// compiled file. +// +// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details +// about supported directives. +// +//= require jquery +//= require jquery_ujs +//= require turbolinks +//= require_tree . diff --git a/app/assets/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..23197e152 --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,231 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, + * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any styles + * defined in the other CSS/SCSS files in this directory. It is generally better to create a new + * file per style scope. + * + *= require_tree . + *= require_self + */ + * { + box-sizing: border-box; + } + + html { + font-size: 16px; + font-family: 'Josefin Sans', Helvetica, Arial, sans-serif; + } + body { + background-color: #19334d; + color: #ecf2f9; + padding: 4rem; + } + + h1 { + font-size: 3.5rem; + } + + h2 { + margin: .25rem 0; + } + + a { + color: white; + text-decoration: none; + } + + header.title { + width: 100%; + text-align: center; + font-size: 1.25rem; + } + + /*INDEX*/ + .task-info { + display: inline-block; + width: 75%; + min-height: 4rem; + margin-left: .25rem; + padding: .5rem .3rem; + } + + .task-info p { + margin: 0; + padding-left: .6rem; + color: #CDD2D7; + } + + .task-box { + /*background-color: rgb(62, 98, 134);*/ + background-color: #54789B; + width: 45%; + border: .1rem solid #18314e; + border-radius: .3rem; + color: #ecf2f9; + margin: 2% 2.5%; + float: left; + } + + + .completed { + font-style: italic; + background-color: rgb(50, 77, 100); + background-color: rgba(50, 77, 100, .7); + float: left; + } + + .uncomplete:nth-child(2n+1) { + float: right; + } + + .checkbox { + height: 2.5rem; + width: 2.5rem; + margin: 2%; + background-color: #ABB8C4; + background-image: url('/images/check.png'); + opacity: 0.3; + background-size: contain; + border: .25rem solid #ABB8C4; + border-radius: .25rem; + vertical-align: middle; + float: left; + overflow: auto; + } + + .checkbox:hover { + background-color: #E9E9E9; + border: .25rem solid #E9E9E9; + background-image: url('/images/check.png'); + opacity: 0.6;} + + .completed .checkbox { + background-image: url('/images/creepysmile.png'); + z-index: 1; + opacity: .8; + background-repeat: no-repeat; + background-size: cover; + } + + .task-edits { + float: right; + /*display: block;*/ + width: 5%; + margin: 1% 0.5% 1% 1%; + font-size: 1rem; + } + + .task-edits i { + font-size: 1.5rem; + color: #9fbfdf; + padding: .2rem 0; + } + + .task-edits i:hover { + color: white; + } + + .new-task { + width: 25%; + height: 3.5rem; + margin: 3% auto; + padding: 1rem; + background: #E4C158; + border-radius: .25rem; + font-size: 1.5rem; + text-align: center; + cursor: pointer; + } + + .new-task:hover { + background: #E3B429; + } + + .new-task p { + margin: 0; + padding: 0; + } + + .float-left { + float: left; + } + + .float-right { + float: right; + } + + .column-title{ + clear: both; + width: 100%; + text-align: center; + } + + .completed:nth-child(2n+1) { + float: right; + } + + /** FORM **/ + + .create-task { + width: 50%; + text-align: center; + margin: auto; + } + + .create-task form * { + display: block; + margin: auto; + padding: .2rem; + } + + .create-task form label { + margin: 4%; + } + + .create-task form textarea, + .create-task form input[type=text] { + margin-top: 2%; + } + + + .black_overlay{ + display: none; + position: absolute; + top: 0%; + left: 0%; + width: 100%; + height: 100%; + background-color: black; + z-index:1001; + -moz-opacity: 0.8; + opacity:.80; + filter: alpha(opacity=80); + } + .white_content { + display: none; + position: absolute; + top: 25%; + left: 25%; + width: 50%; + height: 50%; + padding: 16px; + border: 16px solid orange; + background-color: white; + z-index:1002; + overflow: auto; + } + + + + + + + + + /** END **/ diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss new file mode 100644 index 000000000..b57862ec7 --- /dev/null +++ b/app/assets/stylesheets/tasks.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the tasks controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 000000000..d83690e1b --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,5 @@ +class ApplicationController < ActionController::Base + # Prevent CSRF attacks by raising an exception. + # For APIs, you may want to use :null_session instead. + protect_from_forgery with: :exception +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb new file mode 100644 index 000000000..93e776368 --- /dev/null +++ b/app/controllers/tasks_controller.rb @@ -0,0 +1,65 @@ +class TasksController < ApplicationController + def index + @tasks = Task.order(completed: :asc) + render :index + end + + def by_priority + @tasks = Task.order(priority: :desc) + render :index + end + + def new + @task = Task.new() + render :new + end + + def create #NEEDS MODEL TO ALTER + @task = Task.create(create_task_params[:task]) + @tasks = Task.order(completed: :asc) + render :index + end + + def show + @task = Task.find(params[:id]) + render :taskpage + end + + def complete + @task = Task.find(params[:id]) + @task.update(completed: DateTime.new) + @tasks = Task.order(completed: :asc) + render :index + end + + def uncomplete + @task = Task.find(params[:id]) + @task.update(completed: nil) + @tasks = Task.order(completed: :asc) + render :index + end + + def delete + @task = Task.find(params[:id]) + @task.destroy + @tasks = Task.order(completed: :asc) + render :index + end + + def edit + @task = Task.find(params[:id]) + # @edit_task = [@task.id, @task.task, @task.description, @task.completed] + render :new + end + + def update + @task = Task.find(params[:id]).update(create_task_params[:task]) + @tasks = Task.order(completed: :asc) + render :index + end + + private + def create_task_params + params.permit(task: [:task, :description]) + 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/mailers/.keep b/app/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/.keep b/app/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/models/task.rb b/app/models/task.rb new file mode 100644 index 000000000..9cab01018 --- /dev/null +++ b/app/models/task.rb @@ -0,0 +1,3 @@ +class Task < ActiveRecord::Base + +end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 000000000..1574d3924 --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,16 @@ + + + + TaskListRails + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + + + + + +<%= yield %> + + + diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb new file mode 100644 index 000000000..7febc8f21 --- /dev/null +++ b/app/views/tasks/index.html.erb @@ -0,0 +1,22 @@ +
+ +

Do This Shit:

+
+ +<%= link_to "New Task", tasks_new_path %> + +<% @tasks.each do |task| %> +
+ <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> + <% if task.completed == nil %> + <%= button_to "Mark Complete", "/tasks/complete/#{task.id}" %> + + <% else %> + <%= button_to "Mark Uncomplete", "/tasks/uncomplete/#{task.id}" %> + <%end%> +
+ <%= link_to "Edit", "/tasks/edit/#{task.id}" %> + <%= button_to "Delete", "/tasks/delete/#{task.id}", method: :delete %> +
+
+ <%end%> diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb new file mode 100644 index 000000000..bd4f07c0a --- /dev/null +++ b/app/views/tasks/new.html.erb @@ -0,0 +1,10 @@ + +<%= form_for @task do |f| %> + <%= f.label :task do %> + <%= f.text_field :task, placeholder: "PUPPIES" %> + <%end%> + <%= f.label :description do %> + <%= f.text_area :description, placeholder: "Description" %> + <%end%> + <%= f.submit %> +<% end %> diff --git a/app/views/tasks/taskpage.html.erb b/app/views/tasks/taskpage.html.erb new file mode 100644 index 000000000..3b2031486 --- /dev/null +++ b/app/views/tasks/taskpage.html.erb @@ -0,0 +1,7 @@ +

Do: <%= @task.task %>

+
+

<%= @task.description %>

+

+ <%= (@task.completed != nil) ? "completed: #{@task.completed}" : "incomplete" %> +

+
diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 000000000..66e9889e8 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 000000000..0138d79b7 --- /dev/null +++ b/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../../config/application', __FILE__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 000000000..d87d5f578 --- /dev/null +++ b/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 000000000..acdb2c138 --- /dev/null +++ b/bin/setup @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby +require 'pathname' + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +Dir.chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file: + + puts "== Installing dependencies ==" + system "gem install bundler --conservative" + system "bundle check || bundle install" + + # puts "\n== Copying sample files ==" + # unless File.exist?("config/database.yml") + # system "cp config/database.yml.sample config/database.yml" + # end + + puts "\n== Preparing database ==" + system "bin/rake db:setup" + + puts "\n== Removing old logs and tempfiles ==" + system "rm -f log/*" + system "rm -rf tmp/cache" + + puts "\n== Restarting application server ==" + system "touch tmp/restart.txt" +end diff --git a/bin/spring b/bin/spring new file mode 100755 index 000000000..7fe232c3a --- /dev/null +++ b/bin/spring @@ -0,0 +1,15 @@ +#!/usr/bin/env ruby + +# This file loads spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require 'rubygems' + require 'bundler' + + if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m)) + Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq.join(Gem.path_separator) } + gem 'spring', match[1] + require 'spring/binstub' + end +end diff --git a/config.ru b/config.ru new file mode 100644 index 000000000..bd83b2541 --- /dev/null +++ b/config.ru @@ -0,0 +1,4 @@ +# This file is used by Rack-based servers to start the application. + +require ::File.expand_path('../config/environment', __FILE__) +run Rails.application diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 000000000..902432bad --- /dev/null +++ b/config/application.rb @@ -0,0 +1,26 @@ +require File.expand_path('../boot', __FILE__) + +require 'rails/all' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module TaskListRails + class Application < Rails::Application + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. + # config.time_zone = 'Central Time (US & Canada)' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] + # config.i18n.default_locale = :de + + # Do not swallow errors in after_commit/after_rollback callbacks. + config.active_record.raise_in_transactional_callbacks = true + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 000000000..6b750f00b --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,3 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 000000000..1c1a37ca8 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + pool: 5 + timeout: 5000 + +development: + <<: *default + database: db/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: db/test.sqlite3 + +production: + <<: *default + database: db/production.sqlite3 diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 000000000..ee8d90dc6 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require File.expand_path('../application', __FILE__) + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 000000000..b55e2144b --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,41 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # Adds additional error checking when serving assets at runtime. + # Checks for improperly declared sprockets dependencies. + # Raises helpful error messages. + config.assets.raise_runtime_errors = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 000000000..5c1b32e48 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,79 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Enable Rack::Cache to put a simple HTTP cache in front of your application + # Add `rack-cache` to your Gemfile before enabling this. + # For large-scale production use, consider using a caching reverse proxy like + # NGINX, varnish or squid. + # config.action_dispatch.rack_cache = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + # config.log_tags = [ :subdomain, :uuid ] + + # Use a different logger for distributed setups. + # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 000000000..1c19f08b2 --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,42 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure static file server for tests with Cache-Control for performance. + config.serve_static_files = true + config.static_cache_control = 'public, max-age=3600' + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Randomize the order test cases are executed. + config.active_support.test_order = :random + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 000000000..01ef3e663 --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,11 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. +# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 000000000..59385cdf3 --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 000000000..7f70458de --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb new file mode 100644 index 000000000..15d065a84 --- /dev/null +++ b/config/initializers/session_store.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.session_store :cookie_store, key: '_TaskListRails_session' diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 000000000..33725e95f --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] if respond_to?(:wrap_parameters) +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 000000000..065395716 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,23 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 000000000..754a2fe7a --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,81 @@ +Rails.application.routes.draw do + + root 'tasks#index' + + get '/tasks' => 'tasks#index', as: 'tasks' + + get '/tasks/new' => 'tasks#new' + + get '/tasks/:id' => 'tasks#show', as: 'task' + + get '/tasks/edit/:id' => 'tasks#edit' + + post '/tasks' => 'tasks#create' + # + post '/' => 'tasks#create' + + # get '/tasks/complete/:id' => 'tasks#complete' + + post '/tasks/complete/:id' => 'tasks#complete' + + post '/tasks/uncomplete/:id' => 'tasks#uncomplete' + + patch '/tasks/:id' => 'tasks#update' + + delete '/tasks/delete/:id' => 'tasks#delete' + + # The priority is based upon order of creation: first created -> highest priority. + # See how all your routes lay out with "rake routes". + + # You can have the root of your site routed with "root" + # root 'welcome#index' + + # Example of regular route: + # get 'products/:id' => 'catalog#view' + + # Example of named route that can be invoked with purchase_url(id: product.id) + # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase + + # Example resource route (maps HTTP verbs to controller actions automatically): + # resources :products + + # Example resource route with options: + # resources :products do + # member do + # get 'short' + # post 'toggle' + # end + # + # collection do + # get 'sold' + # end + # end + + # Example resource route with sub-resources: + # resources :products do + # resources :comments, :sales + # resource :seller + # end + + # Example resource route with more complex sub-resources: + # resources :products do + # resources :comments + # resources :sales do + # get 'recent', on: :collection + # end + # end + + # Example resource route with concerns: + # concern :toggleable do + # post 'toggle' + # end + # resources :posts, concerns: :toggleable + # resources :photos, concerns: :toggleable + + # Example resource route within a namespace: + # namespace :admin do + # # Directs /admin/products/* to Admin::ProductsController + # # (app/controllers/admin/products_controller.rb) + # resources :products + # end +end diff --git a/config/secrets.yml b/config/secrets.yml new file mode 100644 index 000000000..720cc869a --- /dev/null +++ b/config/secrets.yml @@ -0,0 +1,22 @@ +# Be sure to restart your server when you modify this file. + +# Your secret key is used for verifying the integrity of signed cookies. +# If you change this key, all old signed cookies will become invalid! + +# Make sure the secret is at least 30 characters and all random, +# no regular words or you'll be exposed to dictionary attacks. +# You can use `rake secret` to generate a secure secret key. + +# Make sure the secrets in this file are kept private +# if you're sharing your code publicly. + +development: + secret_key_base: 7ade914c41c6fbcf20a47e536fd5b24556b180be8fe1d823ce67bff4cb8bf6dd231436374f05554af28864edc06bc1f3dd639753a0d596f70d1b444739e191f7 + +test: + secret_key_base: ba021c93ab669b71fe1403066485ecc5b98e78da7db770af2f50d11493c903c35000172c6730ceeca91ca903709599a908116d2d7a0815ab1221f5bff6884581 + +# Do not keep production secrets in the repository, +# instead read values from the environment. +production: + secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> diff --git a/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..84f35a387e86ef6a25b2c2c69787571219dfa8da GIT binary patch literal 20480 zcmeI4&rcgi6vt;ViEE1EL{;lk+o`K4vB;X4@%~n$)M*@`5F3c8N+pUGdjqT5yJUBP za;i}OgC6^L^pZ;bUwZ1Xx8D0^{UhE)m>eVYhFN=d-p-rv`^+25D;Az_ZTN{tUxd-X zO=z9mCW=D7rj!ukz;OePamhhretZJ&%2fNZrbECUeJB>^u{;a%|@q5 zJB`O1P5Q>Q_XBs}J%Ewbi(hj2a=EPhx|jM)-1w(BeVNaUucUnydcWfLDs-*YX|6Q4 z>E`y@v&Qx=U2pEv#!jcb)`CILnyn6Pwc*&=*mywGkrjICM%^Pfg7cmicO(Be@xx%c zyBiLU`(EOK``6bVM}8Rj$@z3&oJ4+bINj5YJQoJ;yGe!ipq2OoZ(700vFyFXUcJcA z<;xG3m5XIR=y^Y%1U~TGkGn_Sz}+AChmk9##&31xMu2u&Yg;=_VDhB-J*`|eyh7V8 zT6xQfBzo#av4m0WEBW#=2+0qZ_euqG*(I9kd<=EMr7G{umD0ZiDi$Pw1dsp{Kmter z2_OL^fCP{L58kiPKy{n48z9~O=ueW7Y57b@dWJB&GLT}of& zw_=rPs^C;`N9T^PYr0_x+nlxthno)PHCxmz(>^E{$fqA==5>3$cb=o})XkbHbgeG3 zb1=)%^qQt~CN%hZ{+IeWFrN|I^ypdIndWc?QR!BlcjpS^ZZXxq64E53kE4^IdvvvU zZc9L%J4~+$A#96{r2$7W*BS&CNpblDgH@zZ29zZqp_MRkS~YLVJsUmlxbNLr$PtKV~bpCP^&u{uW?&5 zh56&n0%?z&`iDpKsekIx=i$IR2z%#rH$0(F!r)#)*MsnE>?I?uE^J*JTcm&CXqrT2 z3d=J2xA_9OH}t>RcY}mJ?T2UZ;P-e$)|Vmb6Ev@Vi5kBCAWxfGA+Blkfl?Wo>CyyA?D7J2dNmv3GKjV zn_$dRnV||sneD)4)Mi2E7Bh_T{29TiMQT+_{}HHIkN^@u0!RP}AOR$R1dsp{Kmter T2_S*%M4+JL%1Zjb9LoO#D!~Fw literal 0 HcmV?d00001 diff --git a/db/migrate/20160419204601_create_tasks.rb b/db/migrate/20160419204601_create_tasks.rb new file mode 100644 index 000000000..fa7b5d4fd --- /dev/null +++ b/db/migrate/20160419204601_create_tasks.rb @@ -0,0 +1,13 @@ +class CreateTasks < ActiveRecord::Migration + def change + create_table :tasks do |t| + t.string :task + t.string :description + t.string :completed + t.string :priority + t.string :string + + t.timestamps null: false + end + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..823263393 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,26 @@ +# encoding: UTF-8 +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 20160419204601) do + + create_table "tasks", force: :cascade do |t| + t.string "task" + t.string "description" + t.string "completed" + t.string "priority" + t.string "string" + 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..9f74272b8 --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,27 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). +# +# Examples: +# +# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) +# Mayor.create(name: 'Emanuel', city: cities.first) +def random_time + Time.at(rand * Time.now.to_i) +end + +tasks = [ + { task: "The First Task", description: "", completed: random_time }, + { task: "Go to Brunch", description: "" }, + { task: "Go to Lunch", description: "", completed: random_time }, + { task: "Go to Second Lunch", description: "" }, + { task: "Play Video Games", description: "", completed: random_time }, + { task: "High Five Somebody You Don't Know", description: "", completed: random_time }, + { task: "Plant Flowers", description: "", completed: random_time }, + { task: "Call Mom", description: "" }, + { task: "She worries, you know.", description: "" }, + { task: "Nap.", description: "", completed: random_time } +] + +tasks.each do |task| + Task.create task +end 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..a47a5a921 --- /dev/null +++ b/log/development.log @@ -0,0 +1,7636 @@ +  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.3ms) select sqlite_version(*) +  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160419204601) +  (0.1ms) begin transaction +  (0.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task" varchar, "description" varchar, "completed" varchar, "priority" varchar, "string" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160419204601"]] +  (0.7ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.7ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "The First Task"], ["description", ""], ["completed", "2008-06-20 09:21:47 -0700"], ["created_at", "2016-04-19 21:11:05.218066"], ["updated_at", "2016-04-19 21:11:05.218066"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Go to Brunch"], ["description", ""], ["created_at", "2016-04-19 21:11:05.222980"], ["updated_at", "2016-04-19 21:11:05.222980"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Go to Lunch"], ["description", ""], ["completed", "2007-05-10 22:30:04 -0700"], ["created_at", "2016-04-19 21:11:05.225222"], ["updated_at", "2016-04-19 21:11:05.225222"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-19 21:11:05.227280"], ["updated_at", "2016-04-19 21:11:05.227280"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Play Video Games"], ["description", ""], ["completed", "1977-07-16 05:42:17 -0700"], ["created_at", "2016-04-19 21:11:05.229677"], ["updated_at", "2016-04-19 21:11:05.229677"]] +  (0.9ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "High Five Somebody You Don't Know"], ["description", ""], ["completed", "1996-01-22 22:41:55 -0800"], ["created_at", "2016-04-19 21:11:05.232954"], ["updated_at", "2016-04-19 21:11:05.232954"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Plant Flowers"], ["description", ""], ["completed", "1992-05-25 20:38:18 -0700"], ["created_at", "2016-04-19 21:11:05.236230"], ["updated_at", "2016-04-19 21:11:05.236230"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Call Mom"], ["description", ""], ["created_at", "2016-04-19 21:11:05.239449"], ["updated_at", "2016-04-19 21:11:05.239449"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "She worries, you know."], ["description", ""], ["created_at", "2016-04-19 21:11:05.243339"], ["updated_at", "2016-04-19 21:11:05.243339"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Nap."], ["description", ""], ["completed", "2010-02-27 00:03:46 -0800"], ["created_at", "2016-04-19 21:11:05.246602"], ["updated_at", "2016-04-19 21:11:05.246602"]] +  (0.7ms) commit transaction + Task Load (2.5ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/" for ::1 at 2016-04-19 14:53:44 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + +NameError (uninitialized constant TasksController::Tasks): + app/controllers/tasks_controller.rb:3:in `index' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (55.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (117.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:54:13 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected end-of-input, expecting keyword_end): + app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_ensure, expecting keyword_end + app/views/tasks/index.html.erb:15: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.0ms) + + +Started GET "/" for ::1 at 2016-04-19 14:54:22 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:10: syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:12: syntax error, unexpected end-of-input, expecting keyword_end): + app/views/tasks/index.html.erb:10: syntax error, unexpected keyword_ensure, expecting keyword_end + app/views/tasks/index.html.erb:12: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.2ms) + + +Started GET "/" for ::1 at 2016-04-19 14:54:25 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:10: syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:12: syntax error, unexpected end-of-input, expecting keyword_end): + app/views/tasks/index.html.erb:10: syntax error, unexpected keyword_ensure, expecting keyword_end + app/views/tasks/index.html.erb:12: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (2.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.3ms) + + +Started GET "/" for ::1 at 2016-04-19 14:54:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 1640ms (Views: 1638.2ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 14:54:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 14:54:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 14:54:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 14:54:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 14:54:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 14:54:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 14:54:44 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 14:54:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"Go to Brunch"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."task" = ? LIMIT 1 [["task", "Go to Brunch"]] + Rendered tasks/taskpage.html.erb within layouts/application (0.4ms) +Completed 200 OK in 50ms (Views: 39.5ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-04-19 14:55:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 14:55:36 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 14:55:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 14:55:36 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 14:55:36 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 14:55:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 14:55:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 14:55:36 -0700 + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 14:55:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."task" = ? LIMIT 1 [["task", "Go to Brunch"]] + Rendered tasks/taskpage.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:06:57 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (13.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.2ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:06:57 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (116.7ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:07:07 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.0ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:07:08 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.7ms) + + +Started GET "/Go%20to%20Brunch" for ::1 at 2016-04-19 15:07:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"Go to Brunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."task" = ? LIMIT 1 [["task", "Go to Brunch"]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Second%20Lunch" for ::1 at 2016-04-19 15:07:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"Go to Second Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."task" = ? LIMIT 1 [["task", "Go to Second Lunch"]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:07:31 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.9ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:07:31 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.1ms) + + +Started GET "/Call%20Mom" for ::1 at 2016-04-19 15:07:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"Call Mom"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."task" = ? LIMIT 1 [["task", "Call Mom"]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.1ms) + + +Started GET "/Plant%20Flowers" for ::1 at 2016-04-19 15:07:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"Plant Flowers"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."task" = ? LIMIT 1 [["task", "Plant Flowers"]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/High%20Five%20Somebody%20You%20Don't%20Know" for ::1 at 2016-04-19 15:07:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"High Five Somebody You Don't Know"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."task" = ? LIMIT 1 [["task", "High Five Somebody You Don't Know"]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/Go%20to%20Lunch" for ::1 at 2016-04-19 15:07:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"Go to Lunch"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."task" = ? LIMIT 1 [["task", "Go to Lunch"]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/The%20First%20Task" for ::1 at 2016-04-19 15:07:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"The First Task"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."task" = ? LIMIT 1 [["task", "The First Task"]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:08:35 -0700 + +ActionController::RoutingError (No route matches [GET] "/Nap."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.8ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:08:35 -0700 + +ActionController::RoutingError (No route matches [GET] "/Nap."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.1ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:09:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.2ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:09:03 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (68.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.9ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:09:30 -0700 + +ActionController::RoutingError (No route matches [GET] "/Nap."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.5ms) + + +Started GET "/Nap." for ::1 at 2016-04-19 15:09:30 -0700 + +ActionController::RoutingError (No route matches [GET] "/Nap."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.7ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:09:37 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.2ms) + + +Started GET "/She%20worries,%20you%20know." for ::1 at 2016-04-19 15:09:37 -0700 + +ActionController::RoutingError (No route matches [GET] "/She%20worries,%20you%20know."): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.3ms) + + +Started GET "/Play%20Video%20Games" for ::1 at 2016-04-19 15:09:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"Play Video Games"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."task" = ? LIMIT 1 [["task", "Play Video Games"]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:10:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:10:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:10:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:10:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:10:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:10:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:10:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:10:52 -0700 + + +Started GET "/2" for ::1 at 2016-04-19 15:10:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 + Rendered tasks/taskpage.html.erb within layouts/application (3.8ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task' for nil:NilClass): + 1:

Task: <%= @task.task %>

+ 2:
+ 3: <%= @task.description %> + 4:
+ app/views/tasks/taskpage.html.erb:1:in `_app_views_tasks_taskpage_html_erb___1254001021284456552_70310233923080' + app/controllers/tasks_controller.rb:17:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.8ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:10:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 + Rendered tasks/taskpage.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task' for nil:NilClass): + 1:

Task: <%= @task.task %>

+ 2:
+ 3: <%= @task.description %> + 4:
+ app/views/tasks/taskpage.html.erb:1:in `_app_views_tasks_taskpage_html_erb___1254001021284456552_70310248670040' + app/controllers/tasks_controller.rb:17:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.6ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:11:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 + Rendered tasks/taskpage.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `id' for nil:NilClass): + 1:

Task: <%= @task.id %>

+ 2:
+ 3: <%= @task.description %> + 4:
+ app/views/tasks/taskpage.html.erb:1:in `_app_views_tasks_taskpage_html_erb___1254001021284456552_70310248167540' + app/controllers/tasks_controller.rb:17:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.2ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:11:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 + Rendered tasks/taskpage.html.erb within layouts/application (4.6ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (undefined method `id' for nil:NilClass): + 1:

Task: <%= @task.id %>

+ 2:
+ 3: <%= @task.description %> + 4:
+ app/views/tasks/taskpage.html.erb:1:in `_app_views_tasks_taskpage_html_erb___1254001021284456552_70310248167540' + app/controllers/tasks_controller.rb:17:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.6ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:11:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 + Rendered tasks/taskpage.html.erb within layouts/application (4.4ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `description' for nil:NilClass): + 1:

Task: <%= @task %>

+ 2:
+ 3: <%= @task.description %> + 4:
+ app/views/tasks/taskpage.html.erb:3:in `_app_views_tasks_taskpage_html_erb___1254001021284456552_70310236866840' + app/controllers/tasks_controller.rb:17:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.8ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:12:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 + Rendered tasks/taskpage.html.erb within layouts/application (0.4ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:12:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:12:12 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:12:12 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:12:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:12:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:12:12 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:12:12 -0700 + + +Started GET "/" for ::1 at 2016-04-19 15:12:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 41ms (Views: 37.9ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:12:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:12:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:12:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:12:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:12:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:12:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:12:48 -0700 + + +Started GET "/2" for ::1 at 2016-04-19 15:12:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +NoMethodError (undefined method `first' for nil:NilClass): + app/controllers/tasks_controller.rb:16:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.3ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:12:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +NoMethodError (undefined method `first' for nil:NilClass): + app/controllers/tasks_controller.rb:16:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.6ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:13:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 + Rendered tasks/taskpage.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 16.0ms | ActiveRecord: 0.3ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:13:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 + Rendered tasks/taskpage.html.erb within layouts/application (0.3ms) +Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:13:19 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:13:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:13:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:13:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:13:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:13:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:13:19 -0700 + + +Started GET "/2" for ::1 at 2016-04-19 15:14:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1 + Rendered tasks/taskpage.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `task' for nil:NilClass): + 1:

Task: <%= @task.task %>

+ 2:
+ 3: <%= @task %> + 4:
+ app/views/tasks/taskpage.html.erb:1:in `_app_views_tasks_taskpage_html_erb___1254001021284456552_70310246533660' + app/controllers/tasks_controller.rb:17:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.3ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:15:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL + Rendered tasks/taskpage.html.erb within layouts/application (5.1ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (undefined method `task' for # +Did you mean? take): + 1:

Task: <%= @task.task %>

+ 2:
+ 3: <%= @task %> + 4:
+ app/views/tasks/taskpage.html.erb:1:in `_app_views_tasks_taskpage_html_erb___1254001021284456552_70310246533660' + app/controllers/tasks_controller.rb:17:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.0ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:15:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL ORDER BY "tasks"."id" ASC LIMIT 1 + Rendered tasks/taskpage.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.5ms) + +ActionView::Template::Error (undefined method `task' for nil:NilClass): + 1:

Task: <%= @task.task %>

+ 2:
+ 3: <%= @task %> + 4:
+ app/views/tasks/taskpage.html.erb:1:in `_app_views_tasks_taskpage_html_erb___1254001021284456552_70310246533660' + app/controllers/tasks_controller.rb:17:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.9ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:16:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", nil]] +Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms) + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=): + app/controllers/tasks_controller.rb:16:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/2" for ::1 at 2016-04-19 15:16:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"task"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", nil]] +Completed 404 Not Found in 3ms (ActiveRecord: 0.4ms) + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=): + app/controllers/tasks_controller.rb:16:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.4ms) + + +Started GET "/show/2" for ::1 at 2016-04-19 15:16:39 -0700 + +ActionController::RoutingError (No route matches [GET] "/show/2"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (82.9ms) + + +Started GET "/show/2" for ::1 at 2016-04-19 15:18:17 -0700 + +ActionController::RoutingError (No route matches [GET] "/show/2"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.7ms) + + +Started GET "/show/2" for ::1 at 2016-04-19 15:18:32 -0700 + +ActionController::RoutingError (No route matches [GET] "/show/2"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.4ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-19 15:18:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 33ms (Views: 24.3ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-19 15:19:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/taskpage.html.erb within layouts/application (0.4ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:19:42 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:19:42 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:19:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:19:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:19:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:19:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:19:42 -0700 + + +Started GET "/" for ::1 at 2016-04-19 15:19:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for ::1 at 2016-04-19 15:19:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/taskpage.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 15:20:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 31ms (Views: 30.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:20:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:20:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:20:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:20:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:20:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:20:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:20:32 -0700 + + +Started GET "/" for ::1 at 2016-04-19 15:36:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 38ms (Views: 35.2ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:36:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:36:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:36:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:36:47 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:36:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:36:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:36:47 -0700 + + +Started POST "/new" for ::1 at 2016-04-19 15:36:51 -0700 + +ActionController::RoutingError (No route matches [POST] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.9ms) + + +Started DELETE "/tasks/delete/2" for ::1 at 2016-04-19 15:37:03 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"eD2j73ajk26dt6M7D2N8481SJSmEWxofnD1xY32MUkFL9bHEqFIJshNBuSGcyLeio4oBoTl01HhehWGXCDVAWg==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined method `each' for nil:NilClass): + 2: + 3: <%= button_to "New Task", "/new" %> + 4: + 5: <% @tasks.each do |task| %> + 6:
+ 7: <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> + 8:
+ app/views/tasks/index.html.erb:5:in `_app_views_tasks_index_html_erb__2881241661375548178_70310236411240' + app/controllers/tasks_controller.rb:27:in `delete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (55.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.8ms) + + +Started GET "/" for ::1 at 2016-04-19 15:38:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 29ms (Views: 26.8ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:38:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:38:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:38:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:38:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:38:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:38:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:38:06 -0700 + + +Started GET "/" for ::1 at 2016-04-19 15:40:08 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected '<', expecting ')' +
+ ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:10: syntax error, unexpected '<' + <%= link_to "Edit", "/tasks/ed... + ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_end, expecting ')' +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:19: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:9: syntax error, unexpected '<', expecting ')' + app/views/tasks/index.html.erb:10: syntax error, unexpected '<' + app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:19: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.8ms) + + +Started GET "/" for ::1 at 2016-04-19 15:40:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.8ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:40:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:40:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:40:17 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:40:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:40:17 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:40:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:40:17 -0700 + + +Started GET "/tasks/9" for ::1 at 2016-04-19 15:40:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/taskpage.html.erb within layouts/application (24.5ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fe4bfcbee80> +Did you mean? @task): + 2:
+ 3:

<%= @task.description %>

+ 4:

+ 5: <%= (task.completed != nil) ? @task.completed : "incomplete" %> + 6:

+ 7:
+ app/views/tasks/taskpage.html.erb:5:in `_app_views_tasks_taskpage_html_erb___1254001021284456552_70310223495060' + app/controllers/tasks_controller.rb:17:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.0ms) + + +Started GET "/tasks/9" for ::1 at 2016-04-19 15:40:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/taskpage.html.erb within layouts/application (23.0ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fe4c3bf8678> +Did you mean? @task): + 2:
+ 3:

<%= @task.description %>

+ 4:

+ 5: <%= (task.completed != nil) ? @task.completed : "incomplete" %> + 6:

+ 7:
+ app/views/tasks/taskpage.html.erb:5:in `_app_views_tasks_taskpage_html_erb___1254001021284456552_70310201866380' + app/controllers/tasks_controller.rb:17:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.2ms) + + +Started GET "/tasks/9" for ::1 at 2016-04-19 15:40:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/taskpage.html.erb within layouts/application (0.4ms) +Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:40:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:40:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:40:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:40:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:40:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:40:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:40:37 -0700 + + +Started GET "/" for ::1 at 2016-04-19 15:42:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:42:34 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:42:34 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:42:34 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:42:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:42:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:42:34 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:42:34 -0700 + + +Started GET "/" for ::1 at 2016-04-19 15:43:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:43:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:43:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:43:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:43:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:43:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:43:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:43:49 -0700 + + +Started POST "/tasks/complete/9" for ::1 at 2016-04-19 15:43:51 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/complete/9"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.9ms) + + +Started GET "/" for ::1 at 2016-04-19 15:44:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:44:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:44:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:44:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:44:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:44:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:44:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:44:25 -0700 + + +Started POST "/tasks/complete/9" for ::1 at 2016-04-19 15:44:27 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"E+cVa8o7NdZIWYBTFTHUL7oWTtJJcYb+zK3yhxGN3QIgLwdAFMqvCsavmkmGmh9u1M5qWvReSJkOFeJzZDTPGQ==", "id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-19 22:44:27.775434"], ["id", 9]] +  (0.6ms) commit transaction + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 1.2ms) + +ActionView::Template::Error (undefined method `each' for nil:NilClass): + 2: + 3: <%= button_to "New Task", "/new" %> + 4: + 5: <% @tasks.each do |task| %> + 6:
+ 7: <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> + 8: <% if task.completed == nil %> + app/views/tasks/index.html.erb:5:in `_app_views_tasks_index_html_erb__2881241661375548178_70310210376400' + app/controllers/tasks_controller.rb:23:in `complete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.4ms) + + +Started POST "/tasks/complete/4" for ::1 at 2016-04-19 15:45:20 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"E+cVa8o7NdZIWYBTFTHUL7oWTtJJcYb+zK3yhxGN3QIgLwdAFMqvCsavmkmGmh9u1M5qWvReSJkOFeJzZDTPGQ==", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-19 22:45:20.463566"], ["id", 4]] +  (1.4ms) commit transaction + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 1.8ms) + +ActionView::Template::Error (undefined method `each' for nil:NilClass): + 2: + 3: <%= button_to "New Task", "/new" %> + 4: + 5: <% @tasks.each do |task| %> + 6:
+ 7: <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> + 8: <% if task.completed == nil %> + app/views/tasks/index.html.erb:5:in `_app_views_tasks_index_html_erb__2881241661375548178_70310210376400' + app/controllers/tasks_controller.rb:23:in `complete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.2ms) + + +Started POST "/tasks/complete/4" for ::1 at 2016-04-19 15:46:47 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"E+cVa8o7NdZIWYBTFTHUL7oWTtJJcYb+zK3yhxGN3QIgLwdAFMqvCsavmkmGmh9u1M5qWvReSJkOFeJzZDTPGQ==", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Completed 500 Internal Server Error in 27ms (ActiveRecord: 1.2ms) + +NameError (undefined local variable or method `desc' for #): + app/controllers/tasks_controller.rb:23:in `complete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.8ms) + + +Started POST "/tasks/complete/4" for ::1 at 2016-04-19 15:47:00 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"E+cVa8o7NdZIWYBTFTHUL7oWTtJJcYb+zK3yhxGN3QIgLwdAFMqvCsavmkmGmh9u1M5qWvReSJkOFeJzZDTPGQ==", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."priority" DESC + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 33ms (Views: 22.7ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:47:01 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:47:01 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:47:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:47:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:47:01 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:47:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:47:01 -0700 + + +Started POST "/tasks/complete/4" for ::1 at 2016-04-19 15:47:09 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"E+cVa8o7NdZIWYBTFTHUL7oWTtJJcYb+zK3yhxGN3QIgLwdAFMqvCsavmkmGmh9u1M5qWvReSJkOFeJzZDTPGQ==", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."priority" DESC + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:47:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:47:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:47:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:47:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:47:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:47:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:47:09 -0700 + + +Started POST "/new" for ::1 at 2016-04-19 15:47:16 -0700 + +ActionController::RoutingError (No route matches [POST] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.2ms) + + +Started DELETE "/tasks/delete/9" for ::1 at 2016-04-19 15:47:22 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"Me69helkuXoBAyXvnVBsTOgHb5BLYukgVWsiHZ525W0CJq+uN5Ujpo/1P/UO+6cNht9LGPZNJ0eX0zLp68/3dg==", "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 9]] +  (1.4ms) commit transaction + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.8ms) + +ActionView::Template::Error (undefined method `each' for nil:NilClass): + 2: + 3: <%= button_to "New Task", "/new" %> + 4: + 5: <% @tasks.each do |task| %> + 6:
+ 7: <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> + 8: <% if task.completed == nil %> + app/views/tasks/index.html.erb:5:in `_app_views_tasks_index_html_erb__2881241661375548178_70310210376400' + app/controllers/tasks_controller.rb:30:in `delete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.7ms) + + +Started GET "/" for ::1 at 2016-04-19 15:47:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (9.4ms) +Completed 200 OK in 31ms (Views: 28.4ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-04-19 15:47:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:47:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:47:48 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:47:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:47:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:47:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:47:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:47:48 -0700 + + +Started DELETE "/tasks/delete/4" for ::1 at 2016-04-19 15:48:06 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"VDOcZj/B3kWFCvbrjcgwLPcnY02OsJidZU0UFwYDggFn+45N4TBEmQv87PEeY/ttmf9HxTOfVvqn9QTjc7qQGg==", "id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 4]] +  (1.4ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."priority" DESC + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 23ms (Views: 18.0ms | ActiveRecord: 2.1ms) + + +Started GET "/t" for ::1 at 2016-04-19 15:48:21 -0700 + +ActionController::RoutingError (No route matches [GET] "/t"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.6ms) + + +Started GET "/" for ::1 at 2016-04-19 15:48:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-04-19 15:49:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 29ms (Views: 26.1ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:49:04 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:49:04 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:49:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:49:04 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:49:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:49:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:49:04 -0700 + + +Started POST "/new" for ::1 at 2016-04-19 15:49:07 -0700 + +ActionController::RoutingError (No route matches [POST] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.7ms) + + +Started POST "/new" for ::1 at 2016-04-19 15:56:01 -0700 + +ActionController::RoutingError (No route matches [POST] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.4ms) + + +Started POST "/new" for ::1 at 2016-04-19 15:57:05 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"UIinNkRBl7J/R3tKKECKD7kR7X1DJ63WqOkG/hJYIp9jQLUdmrANbvGxYVC760FO18nJ9f4IY7FqURYKZ+EwhA=="} + Rendered tasks/new.html.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:57:05 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:57:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:57:05 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:57:05 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:57:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:57:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:57:05 -0700 + + +Started POST "/" for ::1 at 2016-04-19 15:57:11 -0700 + +ActionController::RoutingError (No route matches [POST] "/"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.8ms) + + +Started POST "/" for ::1 at 2016-04-19 15:57:33 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"A thing", "description"=>"aa"} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.7ms) + + +Started GET "/" for ::1 at 2016-04-19 15:57:44 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected tCONSTANT, expecting ')' +...ffer.append=( button_to "Delete", "/tasks/delete/#{task.id}"... +... ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:16: syntax error, unexpected '<' +
+ ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:17: unknown regexp options - dv +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:18: unterminated string meets end of file +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:18: syntax error, unexpected end-of-input, expecting ')'): + app/views/tasks/index.html.erb:15: syntax error, unexpected tCONSTANT, expecting ')' + app/views/tasks/index.html.erb:16: syntax error, unexpected '<' + app/views/tasks/index.html.erb:17: unknown regexp options - dv + app/views/tasks/index.html.erb:18: unterminated string meets end of file + app/views/tasks/index.html.erb:18: syntax error, unexpected end-of-input, expecting ')' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.7ms) + + +Started GET "/" for ::1 at 2016-04-19 15:58:09 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected tCONSTANT, expecting ')' +...ffer.append=( button_to "Delete", "/tasks/delete/#{task.id}"... +... ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:16: syntax error, unexpected '<' +
+ ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:17: unknown regexp options - dv +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:18: unterminated string meets end of file +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:18: syntax error, unexpected end-of-input, expecting ')'): + app/views/tasks/index.html.erb:15: syntax error, unexpected tCONSTANT, expecting ')' + app/views/tasks/index.html.erb:16: syntax error, unexpected '<' + app/views/tasks/index.html.erb:17: unknown regexp options - dv + app/views/tasks/index.html.erb:18: unterminated string meets end of file + app/views/tasks/index.html.erb:18: syntax error, unexpected end-of-input, expecting ')' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.7ms) + + +Started GET "/" for ::1 at 2016-04-19 15:58:11 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected tCONSTANT, expecting ')' +...ffer.append=( button_to "Delete", "/tasks/delete/#{task.id}"... +... ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:16: syntax error, unexpected '<' +
+ ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:17: unknown regexp options - dv +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:18: unterminated string meets end of file +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:18: syntax error, unexpected end-of-input, expecting ')'): + app/views/tasks/index.html.erb:15: syntax error, unexpected tCONSTANT, expecting ')' + app/views/tasks/index.html.erb:16: syntax error, unexpected '<' + app/views/tasks/index.html.erb:17: unknown regexp options - dv + app/views/tasks/index.html.erb:18: unterminated string meets end of file + app/views/tasks/index.html.erb:18: syntax error, unexpected end-of-input, expecting ')' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.0ms) + + +Started GET "/" for ::1 at 2016-04-19 15:58:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 28ms (Views: 25.1ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 15:58:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 15:58:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 15:58:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 15:58:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 15:58:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 15:58:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 15:58:58 -0700 + + +Started POST "/new" for ::1 at 2016-04-19 15:59:00 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"Iq/X3iUa3P5dGkWz9QcpKFo5upoJtbxBmuZhM8px9CARZ8X1++tGItPsX6lmrOJpNOGeErSaciZYXnHHv8jmOw=="} + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started POST "/" for ::1 at 2016-04-19 15:59:10 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"New task", "description"=>"dbl post"} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.7ms) + + +Started GET "/" for ::1 at 2016-04-19 16:00:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started POST "/new" for ::1 at 2016-04-19 16:00:53 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"cDASbny4Jxg55yZv5Rvx4qoWBNy3TLjP+KiHfKba84VD+ABFokm9xLcRPHV2sDqjxM4gVApjdqg6EJeI02Phng=="} + Rendered tasks/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms) + + +Started POST "/" for ::1 at 2016-04-19 16:01:02 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"post straight to /", "description"=>"do it"} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.6ms) + + +Started GET "/" for ::1 at 2016-04-19 16:05:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.5ms) + + +Started POST "/new" for ::1 at 2016-04-19 16:05:29 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"251IQmI+RnPqQmSlD93zSq2O8tl/ox6chmvPN06RwhDoVVppvM/cr2S0fr+cdjgLw1bWUcKM0PtE09/DOyjQCw=="} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-19 23:05:29.335899"], ["updated_at", "2016-04-19 23:05:29.335899"]] +  (0.7ms) commit transaction + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 17.7ms | ActiveRecord: 1.1ms) + + +Started POST "/" for ::1 at 2016-04-19 16:05:42 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"New task with def create", "description"=>"news"} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.6ms) + + +Started GET "/" for ::1 at 2016-04-19 16:06:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (9.2ms) +Completed 200 OK in 31ms (Views: 29.1ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/11" for ::1 at 2016-04-19 16:06:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered tasks/taskpage.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/taskpage.html.erb:5: syntax error, unexpected tIVAR, expecting ':' +...ed != nil) ? "completed: "@task.completed : "incomplete" );@... +... ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/taskpage.html.erb:5: syntax error, unexpected ':' +... "completed: "@task.completed : "incomplete" );@output_buffe... +... ^): + app/views/tasks/taskpage.html.erb:5: syntax error, unexpected tIVAR, expecting ':' + app/views/tasks/taskpage.html.erb:5: syntax error, unexpected ':' + app/controllers/tasks_controller.rb:18:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.9ms) + + +Started GET "/tasks/11" for ::1 at 2016-04-19 16:06:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered tasks/taskpage.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/taskpage.html.erb:5: syntax error, unexpected tIVAR, expecting ':' +...ed != nil) ? "completed: "@task.completed : "incomplete" );@... +... ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/taskpage.html.erb:5: syntax error, unexpected ':' +... "completed: "@task.completed : "incomplete" );@output_buffe... +... ^): + app/views/tasks/taskpage.html.erb:5: syntax error, unexpected tIVAR, expecting ':' + app/views/tasks/taskpage.html.erb:5: syntax error, unexpected ':' + app/controllers/tasks_controller.rb:18:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.2ms) + + +Started POST "/tasks/complete/11" for ::1 at 2016-04-19 16:06:30 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"FDeTk9hxb80QXsCz6Y5vdKd/fY/30okDHMMdG6lPWY8n/4G4BoD1EZ6o2ql6JaQ1yadZB0r9R2Teew3v3PZLlA==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-19 23:06:30.715027"], ["id", 11]] +  (0.6ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 23ms (Views: 19.1ms | ActiveRecord: 1.3ms) + + +Started GET "/tasks/11" for ::1 at 2016-04-19 16:06:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered tasks/taskpage.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/taskpage.html.erb:5: syntax error, unexpected tIVAR, expecting ':' +...ed != nil) ? "completed: "@task.completed : "incomplete" );@... +... ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/taskpage.html.erb:5: syntax error, unexpected ':' +... "completed: "@task.completed : "incomplete" );@output_buffe... +... ^): + app/views/tasks/taskpage.html.erb:5: syntax error, unexpected tIVAR, expecting ':' + app/views/tasks/taskpage.html.erb:5: syntax error, unexpected ':' + app/controllers/tasks_controller.rb:18:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.8ms) + + +Started GET "/" for ::1 at 2016-04-19 16:07:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/11" for ::1 at 2016-04-19 16:07:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered tasks/taskpage.html.erb within layouts/application (0.5ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/delete/11" for ::1 at 2016-04-19 16:07:36 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"SGvyXnXsr5Din8rkvvBe08cXCmFQ2GuQFxteVjcYbL97o+B1qx01TGxp0P4tW5WSqc8u6e33pffVo06iQqF+pA==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 11]] +  (1.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 20ms (Views: 15.5ms | ActiveRecord: 2.2ms) + + +Started GET "/tasks/edit/2" for ::1 at 2016-04-19 16:07:47 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/edit/2"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.9ms) + + +Started POST "/new" for ::1 at 2016-04-19 16:07:55 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"3FPfjfeMGxbBYVRPMJObG0aciwC/zx/35/wVMaxxExPvm82mKX2Byk+XTlWjOFBaKESviALg0ZAlRAXF2cgBCA=="} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-19 23:07:55.434063"], ["updated_at", "2016-04-19 23:07:55.434063"]] +  (1.5ms) commit transaction + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 30ms (Views: 26.3ms | ActiveRecord: 1.8ms) + + +Started POST "/" for ::1 at 2016-04-19 16:08:01 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"Why yu no work", "description"=>""} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.7ms) + + +Started GET "/tasks/delete/11" for ::1 at 2016-04-19 16:08:05 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/delete/11"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.0ms) + + +Started GET "/" for ::1 at 2016-04-19 16:08:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12" for ::1 at 2016-04-19 16:08:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:15:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (10.4ms) +Completed 200 OK in 44ms (Views: 40.2ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:15:09 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:15:09 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:15:09 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:15:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:15:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:15:09 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:15:09 -0700 + + +Started POST "/new" for ::1 at 2016-04-19 16:15:11 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"LfMwY2K7DF/CUtGGr01qMYKEzxDVdFHWWpGxtrxVaTEeOyJIvEqWg0yky5w85qFw7FzrmGhbn7GYKaFCyex7Kg=="} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-19 23:15:11.237450"], ["updated_at", "2016-04-19 23:15:11.237450"]] +  (1.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 17.3ms | ActiveRecord: 2.0ms) + + +Started GET "/" for ::1 at 2016-04-19 16:17:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (12.5ms) +Completed 200 OK in 38ms (Views: 34.3ms | ActiveRecord: 1.0ms) + + +Started POST "/new" for ::1 at 2016-04-19 16:17:24 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"/H1zFTDMFSxNYmtJVMB+AtHmr4lXJAyFsufQTfUiXxPPtWE+7j2P8MOUcVPHa7VDvz6LAeoLwuJwX8C5gJtNCA=="} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-19 23:17:24.219949"], ["updated_at", "2016-04-19 23:17:24.219949"]] +  (1.3ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 25ms (Views: 20.5ms | ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-19 16:17:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (11.1ms) +Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-19 16:17:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-19 16:17:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-19 16:17:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-19 16:17:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-19 16:17:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-19 16:17:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-19 16:17:41 -0700 + + +Started POST "/new" for ::1 at 2016-04-19 16:17:43 -0700 + +ActionController::RoutingError (No route matches [POST] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.4ms) + + +Started GET "/" for ::1 at 2016-04-19 16:18:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/new" for ::1 at 2016-04-19 16:18:19 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms) + + +Started POST "/" for ::1 at 2016-04-19 16:18:34 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"New Task new render new", "description"=>"wut"} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.2ms) + + +Started POST "/" for ::1 at 2016-04-19 16:20:13 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"New Task new render new", "description"=>"wut"} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started GET "/" for ::1 at 2016-04-19 16:20:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.8ms) + + +Started DELETE "/tasks/delete/12" for ::1 at 2016-04-19 16:20:24 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"EKa2COOghzxsa/2OvzyU6aAXjX+7zE/67h/cZDYLb4gjbqQjPVEd4OKd55Qsl1+ozs+p9wbjgZ0sp8yQQ7J9kw==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 12]] +  (1.4ms) commit transaction + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 27ms (Views: 21.6ms | ActiveRecord: 2.1ms) + + +Started DELETE "/tasks/delete/13" for ::1 at 2016-04-19 16:20:25 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"u9jTUKZpsGe9Zi5D1WKekrYzc2+IQsjHuCSsL7bfWi+IEMF7eJgquzOQNFlGyVXT2OtX5zVtBqB6nLzbw2ZINA==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 13]] +  (1.7ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 27ms (Views: 23.2ms | ActiveRecord: 2.3ms) + + +Started DELETE "/tasks/delete/14" for ::1 at 2016-04-19 16:20:26 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"hJpuStuzWYOyval1kBtJfMOBtET+YylwiGDR7zQNWNK3UnxhBULDXzxLs28DsII9rVmQzENM5xdK2MEbQbRKyQ==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 14]] +  (1.4ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 1.9ms) + + +Started GET "/new" for ::1 at 2016-04-19 16:20:28 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started POST "/new" for ::1 at 2016-04-19 16:20:32 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"a title", "description"=>""} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.7ms) + + +Started POST "/new" for ::1 at 2016-04-19 16:20:37 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"a title", "description"=>"new"} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.7ms) + + +Started GET "/" for ::1 at 2016-04-19 16:20:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/new" for ::1 at 2016-04-19 16:20:53 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.0ms) + + +Started POST "/" for ::1 at 2016-04-19 16:20:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"Why yu no work", "description"=>""} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.0ms) + + +Started POST "/" for ::1 at 2016-04-19 16:21:05 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"Why yu no work", "description"=>"dumb"} +Can't verify CSRF token authenticity +Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) + +ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' + actionpack (4.2.6) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' + activesupport (4.2.6) lib/active_support/callbacks.rb:432:in `block in make_lambda' + activesupport (4.2.6) lib/active_support/callbacks.rb:164:in `block in halting' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `each' + activesupport (4.2.6) lib/active_support/callbacks.rb:504:in `call' + activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.6) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.6) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.4ms) + + +Started GET "/" for ::1 at 2016-04-19 16:21:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/complete/2" for ::1 at 2016-04-19 16:23:09 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"1URShtC/Nbrfu31JAnE0Bv6EEPqGdBbHM+jM/TLC/PPmjECtDk6vZlFNZ1OR2v9HkFw0cjtb2KDxUNwJR3vu6A==", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-19 23:23:09.815069"], ["id", 2]] +  (1.4ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 23ms (Views: 17.6ms | ActiveRecord: 2.0ms) + + +Started POST "/tasks/complete/8" for ::1 at 2016-04-19 16:23:12 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"z35sIJ4ct8ljpERmnTt9oNRGO1lrp208NAagPUzP+bv8tn4LQO0tFe1SXnwOkLbhup4f0daIo1v2vrDJOXbroA==", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-19 23:23:12.701298"], ["id", 8]] +  (1.5ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 23ms (Views: 17.4ms | ActiveRecord: 2.1ms) + + +Started GET "/tasks/" for ::1 at 2016-04-19 16:54:00 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.3ms) + + +Started GET "/" for ::1 at 2016-04-19 16:54:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-04-21 13:53:56 -0700 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.0ms) +Completed 200 OK in 255ms (Views: 243.6ms | ActiveRecord: 0.6ms) + + +Started GET "/new" for ::1 at 2016-04-21 13:53:59 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (20.2ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007fc4a8adad58> +Did you mean? asset_path): + 4: + 5: --> + 6: + 7: <%= form_for @task do |f| %> + 8: <%= f.label :task %> + 9: <%= f.text_field :description %> + 10: <%= f.submit %> + app/views/tasks/new.html.erb:7:in `_app_views_tasks_new_html_erb___4498306535935554279_70241321565620' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (56.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (127.1ms) + + +Started GET "/new" for ::1 at 2016-04-21 13:54:00 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (17.7ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007fc4a78f1e98> +Did you mean? asset_path): + 4: + 5: --> + 6: + 7: <%= form_for @task do |f| %> + 8: <%= f.label :task %> + 9: <%= f.text_field :description %> + 10: <%= f.submit %> + app/views/tasks/new.html.erb:7:in `_app_views_tasks_new_html_erb___4498306535935554279_70241300667000' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.9ms) + + +Started GET "/" for ::1 at 2016-04-21 13:57:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 27ms (Views: 24.2ms | ActiveRecord: 0.8ms) + + +Started GET "/new" for ::1 at 2016-04-21 13:57:24 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (17.2ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007fc4aa3716a0> +Did you mean? task_path_url): + 4: + 5: --> + 6: + 7: <%= form_for @task do |f| %> + 8: <%= f.label :task %> + 9: <%= f.text_field :description %> + 10: <%= f.submit %> + app/views/tasks/new.html.erb:7:in `_app_views_tasks_new_html_erb___4498306535935554279_70241321565620' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.9ms) + + +Started GET "/new" for ::1 at 2016-04-21 13:57:24 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (18.5ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007fc4a8d3a3a0> +Did you mean? task_path_url): + 4: + 5: --> + 6: + 7: <%= form_for @task do |f| %> + 8: <%= f.label :task %> + 9: <%= f.text_field :description %> + 10: <%= f.submit %> + app/views/tasks/new.html.erb:7:in `_app_views_tasks_new_html_erb___4498306535935554279_70241300667000' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (84.3ms) + + +Started GET "/new" for ::1 at 2016-04-21 13:57:34 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (15.0ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (undefined method `tasks_path' for #<#:0x007fc4a6213618> +Did you mean? tasks_path_url): + 4: + 5: --> + 6: + 7: <%= form_for @task do |f| %> + 8: <%= f.label :task %> + 9: <%= f.text_field :description %> + 10: <%= f.submit %> + app/views/tasks/new.html.erb:7:in `_app_views_tasks_new_html_erb___4498306535935554279_70241300667000' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.8ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:03:24 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (21.2ms) +Completed 200 OK in 48ms (Views: 40.9ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:03:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:03:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:03:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:03:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:03:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:03:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:03:25 -0700 + + +Started POST "/new" for ::1 at 2016-04-21 14:03:32 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"YF8g+e/6ZXVFXPCXYDfdQyOOS1n+G4zpQS5H+Id7qdBTlzLSMQv/qcuq6o3znBYCTVZv0UM0Qo6DllcM8sK7yw==", "task"=>{"description"=>"NEW"}, "commit"=>"Create Task"} +  (0.2ms) begin transaction + SQL (0.7ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 21:03:32.270213"], ["updated_at", "2016-04-21 21:03:32.270213"]] +  (0.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 29ms (Views: 19.8ms | ActiveRecord: 1.6ms) + + +Started GET "/tasks/15" for ::1 at 2016-04-21 14:03:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/taskpage.html.erb within layouts/application (0.4ms) +Completed 200 OK in 28ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/delete/15" for ::1 at 2016-04-21 14:03:44 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"5pizxD+4O/HvBR8FHBVKskCjuQs6BsbOQw7pCD4FOwzVUKHv4UmhLWHzBR+PvoHzLnudg4cpCKmBtvn8S7wpFw==", "id"=>"15"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.9ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 15]] +  (1.6ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 23ms (Views: 17.4ms | ActiveRecord: 2.9ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:03:46 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started POST "/new" for ::1 at 2016-04-21 14:03:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SDbAfcXIz599hYUWad8X9vErGWc3VqOnQsk3DD1bHw17/tJWGzlVQ/Nznwz6dNy3n/M974p5bcCAcSf4SOINFg==", "task"=>{"description"=>"w/ form_for"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 21:03:58.166562"], ["updated_at", "2016-04-21 21:03:58.166562"]] +  (0.7ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 20ms (Views: 16.5ms | ActiveRecord: 1.1ms) + + +Started GET "/tasks/16" for ::1 at 2016-04-21 14:04:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:05:05 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:07:50 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/new.html.erb:9: syntax error, unexpected tSTRING_BEG, expecting ')' +...ext_field :task, :placeholder "PUPPIES" );@output_buffer.saf... +... ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tSTRING_BEG, expecting ')' +...text_area :task, :placeholder "Description" );@output_buffer... +... ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/new.html.erb:15: syntax error, unexpected keyword_end, expecting end-of-input +'.freeze; end + ^): + app/views/tasks/new.html.erb:9: syntax error, unexpected tSTRING_BEG, expecting ')' + app/views/tasks/new.html.erb:12: syntax error, unexpected tSTRING_BEG, expecting ')' + app/views/tasks/new.html.erb:15: syntax error, unexpected keyword_end, expecting end-of-input + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.5ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:08:24 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/new.html.erb:9: syntax error, unexpected tSTRING_BEG, expecting ')' +...ext_field :task, :placeholder "PUPPIES" );@output_buffer.saf... +... ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected tSTRING_BEG, expecting ')' +...text_area :task, :placeholder "Description" );@output_buffer... +... ^): + app/views/tasks/new.html.erb:9: syntax error, unexpected tSTRING_BEG, expecting ')' + app/views/tasks/new.html.erb:12: syntax error, unexpected tSTRING_BEG, expecting ')' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (52.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.4ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:08:44 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:08:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:08:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:08:44 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:08:44 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:08:44 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:08:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:08:44 -0700 + + +Started GET "/new" for ::1 at 2016-04-21 14:10:09 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 30ms (Views: 21.8ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:10:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:10:10 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:10:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:10:10 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:10:10 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:10:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:10:10 -0700 + + +Started POST "/new" for ::1 at 2016-04-21 14:11:53 -0700 + +ArgumentError (Invalid route name, already in use: 'tasks' +You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here: +http://guides.rubyonrails.org/routing.html#restricting-the-routes-created): + config/routes.rb:7:in `block in ' + config/routes.rb:1:in `' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (48.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.7ms) + + +Started POST "/new" for ::1 at 2016-04-21 14:12:25 -0700 + +ActionController::RoutingError (No route matches [POST] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (66.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.1ms) + + +Started POST "/new" for ::1 at 2016-04-21 14:13:37 -0700 + +ActionController::RoutingError (No route matches [POST] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (61.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.3ms) + + +Started GET "/" for ::1 at 2016-04-21 14:16:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.5ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:16:04 -0700 + +ActionController::RoutingError (No route matches [GET] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (89.2ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:16:04 -0700 + +ActionController::RoutingError (No route matches [GET] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.6ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 14:16:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:16:14 -0700 + +ActionController::RoutingError (No route matches [GET] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.0ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:16:14 -0700 + +ActionController::RoutingError (No route matches [GET] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (93.4ms) + + +Started GET "/new" for ::1 at 2016-04-21 14:17:49 -0700 + +ActionController::RoutingError (No route matches [GET] "/new"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.6ms) + + +Started GET "/" for ::1 at 2016-04-21 14:17:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 14:17:56 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 14:18:09 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"mqHgKz/bYmQYOZoOAoa341sxQv022xG4awgGxT8gyXqpafIA4Sr4uJbPgBSRLXyiNelmdYv039+psBYxSpnbYQ==", "task"=>{"task"=>""}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 21:18:09.570430"], ["updated_at", "2016-04-21 21:18:09.570430"]] +  (0.6ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 24ms (Views: 20.7ms | ActiveRecord: 1.1ms) + + +Started GET "/tasks/16" for ::1 at 2016-04-21 14:18:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/taskpage.html.erb within layouts/application (0.4ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/17" for ::1 at 2016-04-21 14:18:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]] + Rendered tasks/taskpage.html.erb within layouts/application (0.5ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/16" for ::1 at 2016-04-21 14:18:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] + Rendered tasks/taskpage.html.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/17" for ::1 at 2016-04-21 14:18:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for ::1 at 2016-04-21 14:20:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 14:20:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 28ms (Views: 26.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 14:21:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:21:43 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:21:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:21:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:21:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:21:43 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:21:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:21:43 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 14:22:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:22:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:22:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:22:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:22:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:22:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:22:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:22:06 -0700 + + +Started GET "/tasks/17" for ::1 at 2016-04-21 14:22:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/delete/16" for ::1 at 2016-04-21 14:22:11 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"HQpHKamKj2Cz2Xi97iAAotG6u1rtcKi+E2o68o01kRkuwlUCd3sVvD0vYqd9i8vjv2Kf0lBfZtnR0ioG+IyDAg==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 16]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 16]] +  (1.6ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 22ms (Views: 18.4ms | ActiveRecord: 2.1ms) + + +Started DELETE "/tasks/delete/17" for ::1 at 2016-04-21 14:22:12 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"86/42wbUPumgCAIK4BdkDUaaXaq2nYUP/VtDlvFxT9rAZ+rw2CWkNS7+GBBzvK9MKEJ5IguyS2g/41NihMhdwQ==", "id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 17]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 17]] +  (1.4ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 21ms (Views: 17.3ms | ActiveRecord: 2.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 14:22:14 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 14:22:25 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+SnG6IKXPd0N3BV2g5KHAV42cJz/QStIu1OVtGyPcdPK4dTDXGanAYMqD2wQOUxAMO5UFEJu5S9564VAGTZjyA==", "task"=>{"task"=>"New task", "description"=>"with a fixed description"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2016-04-21 21:22:25.866370"], ["updated_at", "2016-04-21 21:22:25.866370"]] +  (0.5ms) commit transaction + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 21ms (Views: 17.6ms | ActiveRecord: 1.1ms) + + +Started GET "/tasks/18" for ::1 at 2016-04-21 14:22:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.1ms) + Task Load (1.7ms) SELECT "tasks".* FROM "tasks" + + +Started GET "/tasks" for ::1 at 2016-04-21 14:25:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (9.8ms) +Completed 200 OK in 38ms (Views: 34.5ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:25:53 -0700 + + +Started DELETE "/tasks/delete/18" for ::1 at 2016-04-21 14:25:55 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"4aztoR0kr1CStys1wmMZLXYIxmh18opArAFUnrVA5grSZP+Kw9U1jBxBMS9RyNJsGNDi4MjdRCduuURqwPn0EQ==", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 18]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 18]] +  (1.6ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 22ms (Views: 17.5ms | ActiveRecord: 2.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 14:25:59 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 14:26:19 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZNudoXsrqy5KjpQNurFr2MfiilLwMWXbXbsgWpOzbHNXE4+Kpdox8sR4jhcpGqCZqTqu2k0eq7yfAzCu5gp+aA==", "task"=>{"task"=>"new task, fixed create", "description"=>""}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "created_at", "updated_at") VALUES (?, ?, ?) [["task", "{\"task\"=>\"new task, fixed create\", \"description\"=>\"\"}"], ["created_at", "2016-04-21 21:26:19.611863"], ["updated_at", "2016-04-21 21:26:19.611863"]] +  (0.7ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 18.0ms | ActiveRecord: 1.3ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 14:26:35 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 14:26:43 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rw3bAQCU8EdNU6TeD94dXCP6IOHxaWJOdsnj06TtSgicxckq3mVqm8OlvsScddYdTSIEaUxGrCm0cfMn0VRYEw==", "task"=>{"task"=>"Tasky", "description"=>"descrip"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "created_at", "updated_at") VALUES (?, ?, ?) [["task", "{\"task\"=>\"Tasky\", \"description\"=>\"descrip\"}"], ["created_at", "2016-04-21 21:26:43.101194"], ["updated_at", "2016-04-21 21:26:43.101194"]] +  (0.7ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 1.2ms) + + +Started GET "/tasks/19" for ::1 at 2016-04-21 14:26:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/delete/19" for ::1 at 2016-04-21 14:26:56 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"uoPiqqk56vcLxR0lCthIGRmIliFDG1Bsdx67bpSR5+GJS/CBd8hwK4UzBz+Zc4NYd1Cyqf40ngu1pqua4Sj1+g==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 19]] +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 19]] +  (1.3ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 21ms (Views: 18.2ms | ActiveRecord: 1.9ms) + + +Started DELETE "/tasks/delete/20" for ::1 at 2016-04-21 14:26:59 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"41JPqYT8Bv/OFjKZzE3UuuNxApUFpE1+8VVa9+pj6rPQml2CWg2cI0DgKINf5h/7jakmHbiLgxkz7UoDn9r4qA==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 20]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 20]] +  (1.3ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 21ms (Views: 17.0ms | ActiveRecord: 1.9ms) + + +Started DELETE "/tasks/delete/20" for ::1 at 2016-04-21 14:28:35 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"41JPqYT8Bv/OFjKZzE3UuuNxApUFpE1+8VVa9+pj6rPQml2CWg2cI0DgKINf5h/7jakmHbiLgxkz7UoDn9r4qA==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 20]] +Completed 404 Not Found in 8ms (ActiveRecord: 1.4ms) + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=20): + app/controllers/tasks_controller.rb:36:in `delete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (57.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.7ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 14:28:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 14:28:45 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 14:28:55 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Bqtl3BUZFOeqkIYC5WH2lHW+E2/IenpYItzFl4+Mzx81Y3f3y+iOOyRmnBh2yj3VG2Y353VVtD/gZNVj+jXdBA==", "task"=>{"task"=>"new task params", "description"=>"desp"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "new task params"], ["description", "desp"], ["created_at", "2016-04-21 21:28:55.242102"], ["updated_at", "2016-04-21 21:28:55.242102"]] +  (0.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 18.2ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks/21" for ::1 at 2016-04-21 14:28:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 21]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/delete/21" for ::1 at 2016-04-21 14:29:36 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"/E5Zn8tr4LdupLK3DiERGadVM95wUlkxMFmQx4uZ2grPhku0FZp6a+BSqK2ditpYyY0XVs19l1by4YAz/iDIEQ==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 21]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 21]] +  (0.7ms) commit transaction + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 21ms (Views: 18.0ms | ActiveRecord: 1.4ms) + + +Started DELETE "/tasks/delete/21" for ::1 at 2016-04-21 14:32:13 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"/E5Zn8tr4LdupLK3DiERGadVM95wUlkxMFmQx4uZ2grPhku0FZp6a+BSqK2ditpYyY0XVs19l1by4YAz/iDIEQ==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 21]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=21): + app/controllers/tasks_controller.rb:36:in `delete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (100.5ms) + + +Started GET "/tasks/delete/21" for ::1 at 2016-04-21 14:32:20 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/delete/21"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.8ms) + + +Started GET "/tasks/" for ::1 at 2016-04-21 14:32:24 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-5e302afb259e53fd6f69bf05c03c1a5cea60f8a7c0823245df47e4ce7b6bcd47.css?body=1" for ::1 at 2016-04-21 14:32:24 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-21 14:34:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:34:14 -0700 + + +Started GET "/assets/application.self-5e302afb259e53fd6f69bf05c03c1a5cea60f8a7c0823245df47e4ce7b6bcd47.css?body=1" for ::1 at 2016-04-21 14:34:14 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:34:14 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:34:14 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:34:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:34:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:34:14 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-21 14:34:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-5e302afb259e53fd6f69bf05c03c1a5cea60f8a7c0823245df47e4ce7b6bcd47.css?body=1" for ::1 at 2016-04-21 14:34:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:34:37 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:34:37 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:34:37 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:34:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:34:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:34:37 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-21 14:34:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-5e302afb259e53fd6f69bf05c03c1a5cea60f8a7c0823245df47e4ce7b6bcd47.css?body=1" for ::1 at 2016-04-21 14:34:38 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:34:38 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:34:38 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:34:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:34:38 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:34:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:34:38 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-21 14:35:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:35:46 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:35:46 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:35:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:35:46 -0700 + + +Started GET "/assets/application.self-5e302afb259e53fd6f69bf05c03c1a5cea60f8a7c0823245df47e4ce7b6bcd47.css?body=1" for ::1 at 2016-04-21 14:35:46 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:35:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:35:46 -0700 + + +Started GET "/tasks/edit/2" for ::1 at 2016-04-21 14:36:09 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/edit/2"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.0ms) + + +Started GET "/tasks/edit/2" for ::1 at 2016-04-21 14:36:09 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/edit/2"): + actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.6) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.6) lib/rails/engine.rb:518:in `call' + railties (4.2.6) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/nicosaki/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.5ms) + + +Started GET "/tasks/edit/2" for ::1 at 2016-04-21 14:36:58 -0700 +Processing by TasksController#new as HTML + Parameters: {"id"=>"2"} + Rendered tasks/new.html.erb within layouts/application (2.0ms) +Completed 200 OK in 28ms (Views: 20.1ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/application.self-5e302afb259e53fd6f69bf05c03c1a5cea60f8a7c0823245df47e4ce7b6bcd47.css?body=1" for ::1 at 2016-04-21 14:36:58 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 14:36:58 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 14:36:58 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 14:36:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 14:36:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 14:36:58 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 14:36:58 -0700 + + +Started GET "/tasks/edit/2" for ::1 at 2016-04-21 14:44:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.5ms) + +NoMethodError (undefined method `to_a' for # +Did you mean? to_yaml + to_s): + app/controllers/tasks_controller.rb:44:in `edit' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.4ms) + + +Started GET "/tasks/edit/2" for ::1 at 2016-04-21 14:47:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.5ms) + +NoMethodError (undefined method `complete' for # +Did you mean? completed + completed? + completed=): + app/controllers/tasks_controller.rb:44:in `edit' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.3ms) + + +Started GET "/tasks/edit/2" for ::1 at 2016-04-21 14:47:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/new.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.6ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/new.html.erb:4: syntax error, unexpected '>' +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/new.html.erb:12: syntax error, unexpected '<', expecting ')' + +
+
+

The page you were looking for doesn't exist.

+

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

+
+

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

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

The change you wanted was rejected.

+

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

+
+

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

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

We're sorry, but something went wrong.

+
+

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

+
+ + diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 000000000..e69de29bb diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 000000000..3c9c7c01f --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,5 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file +# +# To ban all spiders from the entire site uncomment the next two lines: +# User-agent: * +# Disallow: / diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb new file mode 100644 index 000000000..ab48b116d --- /dev/null +++ b/test/controllers/tasks_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TasksControllerTest < ActionController::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/fixtures/.keep b/test/fixtures/.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..90c35b0db --- /dev/null +++ b/test/fixtures/tasks.yml @@ -0,0 +1,15 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + task: MyString + description: MyString + completed: MyString + priority: MyString + string: MyString + +two: + task: MyString + description: MyString + completed: MyString + priority: MyString + string: MyString diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/task_test.rb b/test/models/task_test.rb new file mode 100644 index 000000000..3ca215970 --- /dev/null +++ b/test/models/task_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TaskTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 000000000..92e39b2d7 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,10 @@ +ENV['RAILS_ENV'] ||= 'test' +require File.expand_path('../../config/environment', __FILE__) +require 'rails/test_help' + +class ActiveSupport::TestCase + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... +end diff --git a/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep new file mode 100644 index 000000000..e69de29bb From e34f766a34a5e8bbf1d12baa2622ec2e1049dfb1 Mon Sep 17 00:00:00 2001 From: Nicole Iwasaki Date: Fri, 22 Apr 2016 15:29:49 -0700 Subject: [PATCH 2/8] Someday I'll learn --- app/assets/javascripts/index.coffee | 3 + app/assets/stylesheets/application.css | 1 + app/assets/stylesheets/index.scss | 3 + app/controllers/index_controller.rb | 4 + app/controllers/tasks_controller.rb | 10 +- app/helpers/index_helper.rb | 2 + app/models/person.rb | 3 + app/models/task.rb | 2 +- app/views/index/show.html.erb | 2 + app/views/tasks/index.html.erb | 54 +- app/views/tasks/new.html.erb | 9 +- app/views/tasks/taskpage.html.erb | 1 + config/routes.rb | 2 + db/development.sqlite3 | Bin 20480 -> 24576 bytes db/migrate/20160422215443_create_people.rb | 9 + db/schema.rb | 8 +- db/seeds.rb | 11 + log/development.log | 1293 ++++++++++++++++++++ test/controllers/index_controller_test.rb | 9 + test/fixtures/people.yml | 7 + test/models/person_test.rb | 7 + 21 files changed, 1424 insertions(+), 16 deletions(-) create mode 100644 app/assets/javascripts/index.coffee create mode 100644 app/assets/stylesheets/index.scss create mode 100644 app/controllers/index_controller.rb create mode 100644 app/helpers/index_helper.rb create mode 100644 app/models/person.rb create mode 100644 app/views/index/show.html.erb create mode 100644 db/migrate/20160422215443_create_people.rb create mode 100644 test/controllers/index_controller_test.rb create mode 100644 test/fixtures/people.yml create mode 100644 test/models/person_test.rb diff --git a/app/assets/javascripts/index.coffee b/app/assets/javascripts/index.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/index.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 index 23197e152..892b59c29 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -131,6 +131,7 @@ color: white; } + .new-task { width: 25%; height: 3.5rem; diff --git a/app/assets/stylesheets/index.scss b/app/assets/stylesheets/index.scss new file mode 100644 index 000000000..fa113ba29 --- /dev/null +++ b/app/assets/stylesheets/index.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the index controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/index_controller.rb b/app/controllers/index_controller.rb new file mode 100644 index 000000000..d045a57ed --- /dev/null +++ b/app/controllers/index_controller.rb @@ -0,0 +1,4 @@ +class IndexController < ApplicationController + def show + end +end diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 93e776368..a34f36adb 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -15,9 +15,13 @@ def new end def create #NEEDS MODEL TO ALTER - @task = Task.create(create_task_params[:task]) - @tasks = Task.order(completed: :asc) - render :index + @task = Task.new(create_task_params[:task]) + if @task.save + @tasks = Task.order(completed: :asc) + redirect_to root_path + else + render :new + end end def show diff --git a/app/helpers/index_helper.rb b/app/helpers/index_helper.rb new file mode 100644 index 000000000..cdc64c7fa --- /dev/null +++ b/app/helpers/index_helper.rb @@ -0,0 +1,2 @@ +module IndexHelper +end diff --git a/app/models/person.rb b/app/models/person.rb new file mode 100644 index 000000000..4ed22ba8b --- /dev/null +++ b/app/models/person.rb @@ -0,0 +1,3 @@ +class Person < ActiveRecord::Base + has_many :tasks +end diff --git a/app/models/task.rb b/app/models/task.rb index 9cab01018..c3c534741 100644 --- a/app/models/task.rb +++ b/app/models/task.rb @@ -1,3 +1,3 @@ class Task < ActiveRecord::Base - + belongs_to :person end diff --git a/app/views/index/show.html.erb b/app/views/index/show.html.erb new file mode 100644 index 000000000..211622446 --- /dev/null +++ b/app/views/index/show.html.erb @@ -0,0 +1,2 @@ +

Index#show

+

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

diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 7febc8f21..d6b1fedb0 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -5,18 +5,52 @@ <%= link_to "New Task", tasks_new_path %> +
+

Do:

+ +<% @tasks.each do |task| %> +
+ <% if task.completed == nil%> + <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> + <%=button_to "/tasks/complete/#{task.id}" do%> + + <%end%> +
+ Belongs to: <%=task.person%> +
+
+ <%= link_to "/tasks/edit/#{task.id}" do%> + + <%end%> + <%= button_to "/tasks/delete/#{task.id}", data: {confirm: "DELETE DIS SHIT??"}, method: :delete do%> + + <%end%> +
+ <%end%> +
+ <%end%> +
+ +
+ +

Done:

<% @tasks.each do |task| %> -
+
+ <% if task.completed%> <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> - <% if task.completed == nil %> - <%= button_to "Mark Complete", "/tasks/complete/#{task.id}" %> - - <% else %> - <%= button_to "Mark Uncomplete", "/tasks/uncomplete/#{task.id}" %> + <%=button_to "/tasks/uncomplete/#{task.id}" do%> + + <%end%> +
+ <%= link_to "/tasks/edit/#{task.id}" do%> + + <%end%> + <%= button_to "/tasks/delete/#{task.id}", data: {confirm: "DELETE DIS SHIT??"}, method: :delete do%> + <%end%> -
- <%= link_to "Edit", "/tasks/edit/#{task.id}" %> - <%= button_to "Delete", "/tasks/delete/#{task.id}", method: :delete %> -
+
+
+ <%end%>
<%end%> +
diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index bd4f07c0a..674b61684 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -5,6 +5,13 @@ <%end%> <%= f.label :description do %> <%= f.text_area :description, placeholder: "Description" %> - <%end%> + <%end%> + Owner of task: +
+ Finn
+ Jake
+ PB
+ BMO +
<%= f.submit %> <% end %> diff --git a/app/views/tasks/taskpage.html.erb b/app/views/tasks/taskpage.html.erb index 3b2031486..55c338fc4 100644 --- a/app/views/tasks/taskpage.html.erb +++ b/app/views/tasks/taskpage.html.erb @@ -1,6 +1,7 @@

Do: <%= @task.task %>

<%= @task.description %>

+

<%= @task.person%>

<%= (@task.completed != nil) ? "completed: #{@task.completed}" : "incomplete" %>

diff --git a/config/routes.rb b/config/routes.rb index 754a2fe7a..7e2ac8d15 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,5 +1,7 @@ Rails.application.routes.draw do + get 'index/show' + root 'tasks#index' get '/tasks' => 'tasks#index', as: 'tasks' diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 84f35a387e86ef6a25b2c2c69787571219dfa8da..6993aa2ca0d79edf16873bbf43b061e18b47e2ea 100644 GIT binary patch delta 843 zcmbVLO=uHA7@gfFY14Lhk_KB+u~`HU0e6}CX7+Ck=o)iSL`4D~%L)rE+HGmK7Efus zdTGtACog&r+pFTiyWZQ2ARavQAb58+A+=W8LuZ&d%zHfE`yR9XR@wff>|8Fl5kdud zMk}{_oz1n8`D0R(PkBv2_zj-W3);S>^t-R8Ntfiu=c-lZ)r};4`aD{TR@X*%q4~HK zv|C0yxP8B6TpdC^rrWtVT#0%g^?T{Q_DG#j@gc%T_%JP(zT%mZs@8!}hj0L(Hs`E& zRGXEggN$?_NndbtW~{FKOH#{Y_2Te}`arltsHXo!d3_P#J$zSxhjaR(7H4~^G1Zt} z=y%^wrk}-cC5Mput@okP?=%;Rs8W$RgWy5y$<}6)>6wI^Kn-Am`@*J{%RR?)&qkV8 z&KL0nvn|RT$ET-6Iwv4$;@5drJORY=fDz}k$_QDWFQRMJAPW=5tI1NdZY1Hxvv_mm zMYL{mmx4*?omvrH8YYgT&Q|g=+&DG`22eq5!N4N21`p0gE|M7xLIjcWw&jCQJr{Kl zny*v_j)&tPxil|Q%&~pX0`4*HJRA&U(C+^O$+D5ZRWn~uX0a^y$=K2{fZ$*;-*H_# W-Mbl;#%tNnK&7;N>pR}vnf(K#B)oY5 delta 521 zcmY+AK}#D!6vthx)3a-AH%n;h(w^G0Y%UfG9{eC4q{n#by|YnK-!RPk&wISzpLckv9sbacr!9dH%BcGgsgwC) zULgDLI96Y2+(+iAIhGy4{n(mV#&I8Sycp5U0Wt@%wR~gB!Q08F8m!cNodI=$Q=b8M zfnwtVrHwi=&u|vEjJi>O89W^0&H2&K@%T#o)6)1i+LC{Q^H-~*I+{!HmC8mlY<0=U zX1f>db>#OTUnsh)2noOjZZk?46PycR3&4R<4qGu*793mcd3S>MR^ZX;@wYWOAUP~Y=x@NDW5a0F+9dPHe}#7BntuIDA$ z%rH}PHYr9cQ#yK`8(MEgJ<<(3pTkB&HkS(W>r!?xOzG&|9j)3X-8Na@Z++TfpeW$j z6cV3B5WpWn@>V%b+};M6H8pr`_HHxPlBFxDqEdOf4l3ve0seyH0e`-z=au-Z98G9b F{{g{Cc$5GD diff --git a/db/migrate/20160422215443_create_people.rb b/db/migrate/20160422215443_create_people.rb new file mode 100644 index 000000000..727e50381 --- /dev/null +++ b/db/migrate/20160422215443_create_people.rb @@ -0,0 +1,9 @@ +class CreatePeople < ActiveRecord::Migration + def change + create_table :people do |t| + t.string :name + + t.timestamps null: false + end + end +end diff --git a/db/schema.rb b/db/schema.rb index 823263393..7434854dc 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,13 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20160419204601) do +ActiveRecord::Schema.define(version: 20160422215443) do + + create_table "people", force: :cascade do |t| + t.string "name" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end create_table "tasks", force: :cascade do |t| t.string "task" diff --git a/db/seeds.rb b/db/seeds.rb index 9f74272b8..d467a5cb0 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -25,3 +25,14 @@ def random_time tasks.each do |task| Task.create task end + +people = [ + {name: "Finn"}, + {name: "Jake"}, + {name: "PB"}, + {name: "BMO"} +] + +people.each do |person| + Person.create person +end diff --git a/log/development.log b/log/development.log index a47a5a921..6014153a9 100644 --- a/log/development.log +++ b/log/development.log @@ -7634,3 +7634,1296 @@ Processing by TasksController#index as HTML Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC Rendered tasks/index.html.erb within layouts/application (2.5ms) Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:35:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:35:19 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:35:19 -0700 + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 16:35:19 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:35:19 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:35:19 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:35:19 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:35:19 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:35:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 16:35:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:35:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:35:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:35:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:35:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:35:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:35:20 -0700 + + +Started DELETE "/tasks/delete/6" for ::1 at 2016-04-21 16:35:21 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"n3BUFZEC3EwZ/jBEzyMcElwzFAuuCwQV/sHW2ecYEQmsuEY+T/NGkJcIKl5ciNdTMuswgxMkynI8ecYtkqEDEg==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 6]] +  (1.8ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 28ms (Views: 23.6ms | ActiveRecord: 2.6ms) + + +Started DELETE "/tasks/delete/7" for ::1 at 2016-04-21 16:35:23 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"e2s7AOjjqM1qJxkX7kV0crQCIdDLfU8YNjUz1+d3vj5IoykrNhIyEeTRAw197r8z2toFWHZSgX/0jSMjks6sJQ==", "id"=>"7"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 7]] +  (1.4ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 29ms (Views: 23.3ms | ActiveRecord: 2.3ms) + + +Started DELETE "/tasks/delete/10" for ::1 at 2016-04-21 16:35:45 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"gFk9lm2aIuxWWPkbsRNIzOYc+nbuU2zds13wSvPdpk+zkS+9s2u4MNiu4wEiuIONiMTe/lN8orpx5eC+hmS0VA==", "id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 10]] +  (1.8ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 30ms (Views: 24.5ms | ActiveRecord: 2.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:35:47 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.2ms) +Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:35:56 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"okgcmMifGtdmGcN9zKGpLJTwVJ/QAawOj6tWT+2yyj+RgA6zFm6AC+jv2WdfCmJt+ihwF20uYmlNE0a7mAvYJA==", "task"=>{"task"=>"yep", "description"=>"this is a task"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "yep"], ["description", "this is a task"], ["created_at", "2016-04-21 23:35:56.178830"], ["updated_at", "2016-04-21 23:35:56.178830"]] +  (0.6ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 30ms (Views: 26.6ms | ActiveRecord: 1.1ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:37:46 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"okgcmMifGtdmGcN9zKGpLJTwVJ/QAawOj6tWT+2yyj+RgA6zFm6AC+jv2WdfCmJt+ihwF20uYmlNE0a7mAvYJA==", "task"=>{"task"=>"yep", "description"=>"this is a task"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "yep"], ["description", "this is a task"], ["created_at", "2016-04-21 23:37:46.892267"], ["updated_at", "2016-04-21 23:37:46.892267"]] +  (1.6ms) commit transaction + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 1.9ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:10: syntax error, unexpected '<' + <%= link_to task.task, "/tasks... + ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:25: syntax error, unexpected keyword_end, expecting ')' +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:10: syntax error, unexpected '<' + app/views/tasks/index.html.erb:25: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + app/controllers/tasks_controller.rb:20:in `create' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (92.9ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 16:37:50 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:10: syntax error, unexpected '<' + <%= link_to task.task, "/tasks... + ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:25: syntax error, unexpected keyword_end, expecting ')' +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:10: syntax error, unexpected '<' + app/views/tasks/index.html.erb:25: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + app/controllers/tasks_controller.rb:4:in `index' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (85.8ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 16:37:52 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:10: syntax error, unexpected '<' + <%= link_to task.task, "/tasks... + ^ +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:25: syntax error, unexpected keyword_end, expecting ')' +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/index.html.erb:10: syntax error, unexpected '<' + app/views/tasks/index.html.erb:25: syntax error, unexpected keyword_end, expecting ')' + app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + app/controllers/tasks_controller.rb:4:in `index' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (38.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.2ms) + + +Started GET "/tasks" for ::1 at 2016-04-21 16:38:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:38:25 -0700 + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 16:38:25 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:38:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:38:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:38:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:38:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:38:25 -0700 + + +Started GET "/tasks" for ::1 at 2016-04-21 16:38:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:39:13 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"okgcmMifGtdmGcN9zKGpLJTwVJ/QAawOj6tWT+2yyj+RgA6zFm6AC+jv2WdfCmJt+ihwF20uYmlNE0a7mAvYJA==", "task"=>{"task"=>"another task", "description"=>"numver"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "another task"], ["description", "numver"], ["created_at", "2016-04-21 23:39:13.305442"], ["updated_at", "2016-04-21 23:39:13.305442"]] +  (0.5ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 26ms (Views: 22.7ms | ActiveRecord: 1.0ms) + + +Started POST "/tasks/complete/26" for ::1 at 2016-04-21 16:39:21 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"d7zsr73ucgQnRpzXzMgsasU/RED/71jve/j0KgZ6A8BEdP6EYx/o2Kmwhs1fY+crq+dgyELAloi5QOTec8MR2w==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 26]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-21 23:39:21.504636"], ["id", 26]] +  (1.6ms) commit transaction + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 28ms (Views: 21.8ms | ActiveRecord: 2.8ms) + + +Started POST "/tasks/complete/26" for ::1 at 2016-04-21 16:40:05 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"d7zsr73ucgQnRpzXzMgsasU/RED/71jve/j0KgZ6A8BEdP6EYx/o2Kmwhs1fY+crq+dgyELAloi5QOTec8MR2w==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 26]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (35.7ms) +Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined local variable or method `completed' for #<#:0x007fc4ad30e4d0> +Did you mean? Complex): + 6: <%= link_to "New Task", tasks_new_path %> + 7: + 8: <% @tasks.each do |task| %> + 9:
+ 10: <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> + 11: <% if task.completed == nil %> + 12: <%= button_to "Mark Complete", "/tasks/complete/#{task.id}" %> + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb__3717370791846032335_70241347987640' + app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb__3717370791846032335_70241347987640' + app/controllers/tasks_controller.rb:32:in `complete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (77.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (103.1ms) + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:40:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (28.4ms) +Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (undefined local variable or method `completed' for #<#:0x007fc4a8fdc680> +Did you mean? Complex): + 6: <%= link_to "New Task", tasks_new_path %> + 7: + 8: <% @tasks.each do |task| %> + 9:
+ 10: <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> + 11: <% if task.completed == nil %> + 12: <%= button_to "Mark Complete", "/tasks/complete/#{task.id}" %> + app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb__3717370791846032335_70241347987640' + app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb__3717370791846032335_70241347987640' + app/controllers/tasks_controller.rb:4:in `index' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (37.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (83.1ms) + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:40:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 16:40:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:40:33 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:40:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:40:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:40:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:40:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:40:33 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:40:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:41:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 16:41:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:41:20 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:41:20 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:41:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:41:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:41:20 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:41:20 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:41:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 16:41:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:41:35 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:41:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:41:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:41:35 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:41:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:41:35 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:41:51 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/index.html.erb:9: syntax error, unexpected tIDENTIFIER, expecting ')' +...tput_buffer.append=(""completed"" if (task.completed));@outp... +... ^): + app/views/tasks/index.html.erb:9: syntax error, unexpected tIDENTIFIER, expecting ')' + app/controllers/tasks_controller.rb:4:in `index' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (51.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (90.8ms) + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:42:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:42:11 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:42:11 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:42:11 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:42:11 -0700 + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 16:42:11 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:42:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:42:11 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:47:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 16:47:54 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:47:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:47:54 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 16:47:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:47:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:47:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:47:54 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:47:59 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.0ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:48:09 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+/RZGxcngqTbl8TOE061l6K8ylsich/WnTzOn/bpZF7IPEswydYYeFVh3tSA5X7WzGTu059d0bFfhN5rg1B2RQ==", "task"=>{"task"=>"incomplete task", "description"=>"this"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "incomplete task"], ["description", "this"], ["created_at", "2016-04-21 23:48:09.856939"], ["updated_at", "2016-04-21 23:48:09.856939"]] +  (0.8ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 20ms (Views: 16.2ms | ActiveRecord: 1.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-21 16:48:15 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:48:20 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"u+bt0c4fUaIEdICPIfyTkuSpUPp2EJfbTntLPSYv5j6ILv/6EO7LfoqCmpWyV1jTinF0css/WbyMw1vJU5b0JQ==", "task"=>{"task"=>"NEW", "description"=>"wut"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "NEW"], ["description", "wut"], ["created_at", "2016-04-21 23:48:20.823061"], ["updated_at", "2016-04-21 23:48:20.823061"]] +  (0.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 19ms (Views: 15.1ms | ActiveRecord: 1.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-21 16:48:35 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"u+bt0c4fUaIEdICPIfyTkuSpUPp2EJfbTntLPSYv5j6ILv/6EO7LfoqCmpWyV1jTinF0css/WbyMw1vJU5b0JQ==", "task"=>{"task"=>"NEW", "description"=>"wut"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "NEW"], ["description", "wut"], ["created_at", "2016-04-21 23:48:35.136691"], ["updated_at", "2016-04-21 23:48:35.136691"]] +  (1.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 24ms (Views: 20.4ms | ActiveRecord: 2.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 16:48:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 16:48:35 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 16:48:35 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 16:48:35 -0700 + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 16:48:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 16:48:35 -0700 + + +Started POST "/tasks" for ::1 at 2016-04-21 16:49:51 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"u+bt0c4fUaIEdICPIfyTkuSpUPp2EJfbTntLPSYv5j6ILv/6EO7LfoqCmpWyV1jTinF0css/WbyMw1vJU5b0JQ==", "task"=>{"task"=>"NEW", "description"=>"wut"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "NEW"], ["description", "wut"], ["created_at", "2016-04-21 23:49:51.748687"], ["updated_at", "2016-04-21 23:49:51.748687"]] +  (0.7ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 23ms (Views: 18.0ms | ActiveRecord: 1.4ms) + + +Started DELETE "/tasks/delete/27" for ::1 at 2016-04-21 16:50:25 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"WZVI+WXNg5AN/0ZzOHS5WfAxBrv19UBra4QYXtISSsdqXVrSuzwZTIMJXGmr33IYnukiM0jajgypPAiqp6tY3A==", "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 27]] +  (1.3ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 39ms (Views: 34.3ms | ActiveRecord: 2.0ms) + + +Started DELETE "/tasks/delete/27" for ::1 at 2016-04-21 16:51:46 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"WZVI+WXNg5AN/0ZzOHS5WfAxBrv19UBra4QYXtISSsdqXVrSuzwZTIMJXGmr33IYnukiM0jajgypPAiqp6tY3A==", "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 27]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=27): + app/controllers/tasks_controller.rb:43:in `delete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.8ms) + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:51:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/delete/25" for ::1 at 2016-04-21 16:52:06 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"gb3TAtpwPgGYFZXrXt/bVywTGv5t48/MG88s3SjvM6WydcEpBIGk3Rbjj/HNdBAWQss+dtDMAavZdzwpXVYhvg==", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 25]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 25]] +  (0.8ms) commit transaction + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 34ms (Views: 30.4ms | ActiveRecord: 1.5ms) + + +Started DELETE "/tasks/delete/25" for ::1 at 2016-04-21 16:58:20 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"gb3TAtpwPgGYFZXrXt/bVywTGv5t48/MG88s3SjvM6WydcEpBIGk3Rbjj/HNdBAWQss+dtDMAavZdzwpXVYhvg==", "id"=>"25"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 25]] +Completed 404 Not Found in 12ms (ActiveRecord: 0.8ms) + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=25): + app/controllers/tasks_controller.rb:43:in `delete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (57.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.7ms) + + +Started GET "/tasks/" for ::1 at 2016-04-21 16:58:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 0.4ms) + + +Started DELETE "/tasks/delete/28" for ::1 at 2016-04-21 16:58:35 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"B4Jsrf0wrQ/hn/wrJCLMssAGtSuFyiwd+2GSuLVbzLc0Sn6GI8E3029p5jG3iQfzrt6Rozjl4no52YJMwOLerA==", "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 28]] +  (0.2ms) begin transaction + SQL (0.8ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 28]] +  (2.2ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 30ms (Views: 21.3ms | ActiveRecord: 3.5ms) + + +Started DELETE "/tasks/delete/24" for ::1 at 2016-04-21 16:58:47 -0700 +Processing by TasksController#delete as HTML + Parameters: {"authenticity_token"=>"zUwEfoHuJVNXe/QhbFoetiBCYAkIgODsh+zhVJE6Z4b+hBZVXx+/j9mN7jv/8dX3TppEgbWvLotFVPGg5IN1nQ==", "id"=>"24"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 24]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 24]] +  (1.4ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 29ms (Views: 25.5ms | ActiveRecord: 2.0ms) + + +Started POST "/tasks/uncomplete/26" for ::1 at 2016-04-21 16:58:58 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"ptS690mnAseLkLLtVnDaNqFq3MTLS53ugcrb5t+VswWVHKjcl1aYGwVmqPfF2xF3z7L4THZkU4lDcssSqiyhHg==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 26]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", "2016-04-21 23:58:58.986838"], ["id", 26]] +  (1.4ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 29ms (Views: 20.7ms | ActiveRecord: 2.2ms) + + +Started POST "/tasks/complete/30" for ::1 at 2016-04-21 16:59:00 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"TW9JfItDz9ndU0bOU4LQzd04iGZgdCXY7YeAsZQ5v51+p1tXVbJVBVOlXNTAKRuMs+Cs7t1b678vP5BF4YCthg==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-21 23:59:00.760134"], ["id", 30]] +  (1.6ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 25ms (Views: 20.1ms | ActiveRecord: 2.2ms) + + +Started POST "/tasks/uncomplete/30" for ::1 at 2016-04-21 16:59:02 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"UJ3ZuzJjjXxyB8gQCitO/OowhACnuUQtfdSzSewdFeZjVcuQ7JIXoPzx0gqZgIW9hOigiBqWikq/bKO9maQH/Q==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", "2016-04-21 23:59:02.037340"], ["id", 30]] +  (1.4ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 23ms (Views: 18.7ms | ActiveRecord: 2.0ms) + + +Started POST "/tasks/complete/30" for ::1 at 2016-04-21 16:59:03 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"A8/ZK7+XX2RGK7mGOQ5lKPlQDiEXPKUAQUfIHj7vCO8wB8sAYWbFuMjdo5yqpa5pl4gqqaoTa2eD/9jqS1Ya9A==", "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-21 23:59:03.318410"], ["id", 30]] +  (0.6ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 25ms (Views: 19.4ms | ActiveRecord: 1.2ms) + + +Started POST "/tasks/complete/30" for ::1 at 2016-04-21 17:04:35 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"A8/ZK7+XX2RGK7mGOQ5lKPlQDiEXPKUAQUfIHj7vCO8wB8sAYWbFuMjdo5yqpa5pl4gqqaoTa2eD/9jqS1Ya9A==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.4ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (undefined method `stringify_keys' for "/tasks/complete/26":String): + 12:
+ 13: <% if task.completed == nil%> + 14: <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> + 15: <%= button_to "Mark Complete", "/tasks/complete/#{task.id}" do%> + 16: + 17: <%end%> + 18:
+ app/views/tasks/index.html.erb:15:in `block in _app_views_tasks_index_html_erb__3717370791846032335_70241342374760' + app/views/tasks/index.html.erb:11:in `_app_views_tasks_index_html_erb__3717370791846032335_70241342374760' + app/controllers/tasks_controller.rb:32:in `complete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.0ms) + + +Started POST "/tasks/complete/30" for ::1 at 2016-04-21 17:04:48 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"A8/ZK7+XX2RGK7mGOQ5lKPlQDiEXPKUAQUfIHj7vCO8wB8sAYWbFuMjdo5yqpa5pl4gqqaoTa2eD/9jqS1Ya9A==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.2ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `stringify_keys' for "/tasks/complete/26":String): + 12:
+ 13: <% if task.completed == nil%> + 14: <%= link_to task.task, "/tasks/#{task.id}" %>: <%= task.description %> + 15: <%button_to "Mark Complete", "/tasks/complete/#{task.id}" do%> + 16: + 17: <%end%> + 18:
+ app/views/tasks/index.html.erb:15:in `block in _app_views_tasks_index_html_erb__3717370791846032335_70241308989580' + app/views/tasks/index.html.erb:11:in `_app_views_tasks_index_html_erb__3717370791846032335_70241308989580' + app/controllers/tasks_controller.rb:32:in `complete' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (91.5ms) + + +Started POST "/tasks/complete/30" for ::1 at 2016-04-21 17:05:15 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"A8/ZK7+XX2RGK7mGOQ5lKPlQDiEXPKUAQUfIHj7vCO8wB8sAYWbFuMjdo5yqpa5pl4gqqaoTa2eD/9jqS1Ya9A==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 17:05:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:05:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:05:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:05:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:05:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:05:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:05:16 -0700 + + +Started POST "/tasks/complete/30" for ::1 at 2016-04-21 17:05:29 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"A8/ZK7+XX2RGK7mGOQ5lKPlQDiEXPKUAQUfIHj7vCO8wB8sAYWbFuMjdo5yqpa5pl4gqqaoTa2eD/9jqS1Ya9A==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:05:29 -0700 + + +Started GET "/assets/application.self-2c7553900a2233f7765b113d8943b5bfebb92096911e597d685012d9a68ff00d.css?body=1" for ::1 at 2016-04-21 17:05:29 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:05:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:05:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:05:29 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:05:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:05:29 -0700 + + +Started POST "/tasks/complete/29" for ::1 at 2016-04-21 17:05:33 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"VmsNTN+PrmZ9Z4CV1JHenfH1F1Trlufnqg6QdygQ9Ehlox9nAX40uvORmo9HOhXcny0z3Fa5KYBotoCDXanmUw==", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-22 00:05:33.524879"], ["id", 29]] +  (1.4ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 22ms (Views: 18.3ms | ActiveRecord: 2.0ms) + + +Started POST "/tasks/uncomplete/29" for ::1 at 2016-04-21 17:05:35 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"R1GyHaQGmSJYSWa1Dye2Ty+PvdvChOJ7ihHb45Sa5FV0maA2evcD/ta/fK+cjH0OQVeZU3+rLBxIqcsX4SP2Tg==", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", "2016-04-22 00:05:35.929187"], ["id", 29]] +  (1.7ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 23ms (Views: 17.6ms | ActiveRecord: 2.2ms) + + +Started POST "/tasks/uncomplete/29" for ::1 at 2016-04-21 17:06:27 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"R1GyHaQGmSJYSWa1Dye2Ty+PvdvChOJ7ihHb45Sa5FV0maA2evcD/ta/fK+cjH0OQVeZU3+rLBxIqcsX4SP2Tg==", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:06:28 -0700 + + +Started GET "/assets/application.self-2ed6079ee901292b1feb8e1eeb8d8b14ed82466be6443f19b4f174e00bfa269e.css?body=1" for ::1 at 2016-04-21 17:06:28 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:06:28 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:06:28 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:06:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:06:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:06:28 -0700 + + +Started POST "/tasks/uncomplete/29" for ::1 at 2016-04-21 17:07:49 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"R1GyHaQGmSJYSWa1Dye2Ty+PvdvChOJ7ihHb45Sa5FV0maA2evcD/ta/fK+cjH0OQVeZU3+rLBxIqcsX4SP2Tg==", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 29ms (Views: 27.1ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:07:49 -0700 + + +Started GET "/assets/application.self-efc575bae7af301188dca92a8e4324888b8f463a1238f7551a826daaba2738f1.css?body=1" for ::1 at 2016-04-21 17:07:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:07:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:07:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:07:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:07:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:07:49 -0700 + + +Started POST "/tasks/uncomplete/29" for ::1 at 2016-04-21 17:09:41 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"R1GyHaQGmSJYSWa1Dye2Ty+PvdvChOJ7ihHb45Sa5FV0maA2evcD/ta/fK+cjH0OQVeZU3+rLBxIqcsX4SP2Tg==", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:09:41 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:09:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:09:41 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:09:41 -0700 + + +Started GET "/assets/application.self-efc575bae7af301188dca92a8e4324888b8f463a1238f7551a826daaba2738f1.css?body=1" for ::1 at 2016-04-21 17:09:41 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:09:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:09:41 -0700 + + +Started POST "/tasks/uncomplete/29" for ::1 at 2016-04-21 17:11:08 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"R1GyHaQGmSJYSWa1Dye2Ty+PvdvChOJ7ihHb45Sa5FV0maA2evcD/ta/fK+cjH0OQVeZU3+rLBxIqcsX4SP2Tg==", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:11:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:11:08 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:11:08 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:11:08 -0700 + + +Started GET "/assets/application.self-efc575bae7af301188dca92a8e4324888b8f463a1238f7551a826daaba2738f1.css?body=1" for ::1 at 2016-04-21 17:11:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:11:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:11:08 -0700 + + +Started POST "/tasks/uncomplete/29" for ::1 at 2016-04-21 17:11:47 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"R1GyHaQGmSJYSWa1Dye2Ty+PvdvChOJ7ihHb45Sa5FV0maA2evcD/ta/fK+cjH0OQVeZU3+rLBxIqcsX4SP2Tg==", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 29]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:11:48 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:11:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:11:48 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:11:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:11:48 -0700 + + +Started GET "/assets/application.self-efc575bae7af301188dca92a8e4324888b8f463a1238f7551a826daaba2738f1.css?body=1" for ::1 at 2016-04-21 17:11:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:11:48 -0700 + + +Started POST "/tasks/complete/30" for ::1 at 2016-04-21 17:12:01 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"f63pdYksuAh/NvKTu2DmZxKlRDpg9O07qBE+7s3YrHRMZfteV90i1PHA6Ikoyy0mfH1gst3bI1xqqS4auGG+bw==", "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.5ms) + + +Started POST "/tasks/complete/30" for ::1 at 2016-04-21 17:12:05 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"Xl+dbRD9r7vWu/lQpYMie2YxduhEPNYJokn19JmII2Vtl49Gzgw1Z1hN40o2KOk6COlSYPkTGG5g8eUA7DExfg==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.5ms) + + +Started POST "/tasks/complete/30" for ::1 at 2016-04-21 17:16:07 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"Xl+dbRD9r7vWu/lQpYMie2YxduhEPNYJokn19JmII2Vtl49Gzgw1Z1hN40o2KOk6COlSYPkTGG5g8eUA7DExfg==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-21 17:16:07 -0700 + + +Started GET "/assets/application.self-efc575bae7af301188dca92a8e4324888b8f463a1238f7551a826daaba2738f1.css?body=1" for ::1 at 2016-04-21 17:16:07 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-21 17:16:07 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-21 17:16:07 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-21 17:16:07 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-21 17:16:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-21 17:16:07 -0700 + + +Started POST "/tasks/complete/26" for ::1 at 2016-04-21 17:20:59 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"JUSyRNoYteI1FnXrF59ZOHPxaugVkYhpThi2Jhu5wjcWjKBvBOkvPrvgb/GENJJ5HSlOYKi+Rg6MoKbSbgDQLA==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 26]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-22 00:20:59.789304"], ["id", 26]] +  (0.5ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 19ms (Views: 15.5ms | ActiveRecord: 1.1ms) + + +Started POST "/tasks/complete/26" for ::1 at 2016-04-21 17:21:02 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"+IWT9yftYT0ohjjvLCt+kNmQoYwxyTvBauUHPQNF3xjLTYHc+Rz74aZwIvW/gLXRt0iFBIzm9aaoXRfJdvzNAw==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 26]] +  (0.0ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 28ms (Views: 26.2ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/complete/26" for ::1 at 2016-04-21 17:21:04 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"fytp9Bdwp3qjRrr2aGD8egJ363ZuFgstfJSKzd/ABcRM43vfyYE9pi2woOz7yzc7bK/P/tM5xUq+LJo5qnkX3w==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 26]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/30" for ::1 at 2016-04-21 17:21:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] + Rendered tasks/taskpage.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started POST "/tasks/complete/30" for ::1 at 2016-04-21 17:21:09 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"UV0Y5YvGpRlgOJBjkSlU8t1YUvrsNRcZMq99HqFOpc5ilQrOVTc/xe7OinkCgp+zs4B2clEa2X7wF23q1Pe31Q==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.0ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks/complete/26" for ::1 at 2016-04-21 17:22:40 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"x+Ndr1ULssIFwNBS2ZwOIXXZ9eIWKszu8ejn6MCQPxj0K0+Ei/ooHos2ykhKN8VgGwHRaqsFAokzUPcctSktAw==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 26]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/uncomplete/26" for ::1 at 2016-04-21 17:22:42 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"K3Q9Whe8Qo86G7PfJO4i7C7dch8H0SCIo2spP1CrtQoYvC9xyU3YU7TtqcW3RemtQAVWl7r+7u9h0znLJRKnEQ==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 26]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", "2016-04-22 00:22:42.396775"], ["id", 26]] +  (1.4ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 22ms (Views: 17.5ms | ActiveRecord: 1.9ms) + + +Started GET "/" for ::1 at 2016-04-22 14:15:21 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 224ms (Views: 213.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-22 14:15:25 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (28.2ms) +Completed 200 OK in 51ms (Views: 49.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2016-04-22 14:15:32 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"MNjLeUGEMVYdSQfpOsOtUfpNbOSI1jSAL4Anq4bD+94DENlSn3WripO/HfOpaGYQlJVIbDX5+uftODdf83rpxQ==", "task"=>{"task"=>"newt", "description"=>"yas"}, "commit"=>"Create Task"} +Unpermitted parameters: utf8, authenticity_token, commit +  (0.2ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "newt"], ["description", "yas"], ["created_at", "2016-04-22 21:15:32.054482"], ["updated_at", "2016-04-22 21:15:32.054482"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 1.1ms) + + +Started GET "/" for ::1 at 2016-04-22 14:15:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks/uncomplete/30" for ::1 at 2016-04-22 14:15:38 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"AHrhlmafJFA7Qo6bUBJV/S0NDfAaj16TYtNgkY8SPk0zsvO9uG6+jLW0lIHDuZ68Q9UpeKegkPSga3Bl+qssVg==", "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", nil], ["updated_at", "2016-04-22 21:15:38.248346"], ["id", 30]] +  (0.5ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 50ms (Views: 36.7ms | ActiveRecord: 1.2ms) + + +Started POST "/tasks/uncomplete/30" for ::1 at 2016-04-22 14:16:24 -0700 +Processing by TasksController#uncomplete as HTML + Parameters: {"authenticity_token"=>"AHrhlmafJFA7Qo6bUBJV/S0NDfAaj16TYtNgkY8SPk0zsvO9uG6+jLW0lIHDuZ68Q9UpeKegkPSga3Bl+qssVg==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 30]] +  (0.5ms) begin transaction +  (0.0ms) commit transaction + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 34ms (Views: 32.0ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 14:16:25 -0700 + + +Started GET "/assets/application.self-efc575bae7af301188dca92a8e4324888b8f463a1238f7551a826daaba2738f1.css?body=1" for ::1 at 2016-04-22 14:16:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 14:16:25 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 14:16:25 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 14:16:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 14:16:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 14:16:25 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-22 14:16:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreatePeople (20160422215443) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160422215443"]] +  (0.5ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" diff --git a/test/controllers/index_controller_test.rb b/test/controllers/index_controller_test.rb new file mode 100644 index 000000000..dc2a21a15 --- /dev/null +++ b/test/controllers/index_controller_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class IndexControllerTest < ActionController::TestCase + test "should get show" do + get :show + assert_response :success + end + +end diff --git a/test/fixtures/people.yml b/test/fixtures/people.yml new file mode 100644 index 000000000..56066c68a --- /dev/null +++ b/test/fixtures/people.yml @@ -0,0 +1,7 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + +two: + name: MyString diff --git a/test/models/person_test.rb b/test/models/person_test.rb new file mode 100644 index 000000000..ad04ed813 --- /dev/null +++ b/test/models/person_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class PersonTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 52f422b3b0bedc294c9ec33ab0932dc722cca33a Mon Sep 17 00:00:00 2001 From: Nicole Iwasaki Date: Mon, 25 Apr 2016 16:54:23 -0700 Subject: [PATCH 3/8] less dumb --- Gemfile | 2 +- Gemfile.lock | 6 ++++++ app/assets/javascripts/index.coffee | 3 --- app/assets/stylesheets/application.css | 4 +++- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 app/assets/javascripts/index.coffee diff --git a/Gemfile b/Gemfile index d0ca1fdd6..f09c346ec 100644 --- a/Gemfile +++ b/Gemfile @@ -43,5 +43,5 @@ group :development do # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' + gem 'better_errors' end - diff --git a/Gemfile.lock b/Gemfile.lock index c45949a77..2064a2b49 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -37,10 +37,15 @@ GEM thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) arel (6.0.3) + better_errors (2.1.1) + coderay (>= 1.0.0) + erubis (>= 2.6.6) + rack (>= 0.9.0) binding_of_caller (0.7.2) debug_inspector (>= 0.0.1) builder (3.2.2) byebug (8.2.4) + coderay (1.1.1) coffee-rails (4.1.1) coffee-script (>= 2.2.0) railties (>= 4.0.0, < 5.1.x) @@ -143,6 +148,7 @@ PLATFORMS ruby DEPENDENCIES + better_errors byebug coffee-rails (~> 4.1.0) jbuilder (~> 2.0) diff --git a/app/assets/javascripts/index.coffee b/app/assets/javascripts/index.coffee deleted file mode 100644 index 24f83d18b..000000000 --- a/app/assets/javascripts/index.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# 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 index 892b59c29..d2611f337 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -24,7 +24,9 @@ body { background-color: #19334d; color: #ecf2f9; - padding: 4rem; + } + main { + padding: 4rem; } h1 { From afff18fddfa9aeb329bdce49274fd9267d2b711f Mon Sep 17 00:00:00 2001 From: Nicole Iwasaki Date: Mon, 25 Apr 2016 16:55:36 -0700 Subject: [PATCH 4/8] mostly css edits. don't judge me: --- app/assets/stylesheets/application.css | 62 ++++++++++++++------------ app/assets/stylesheets/index.scss | 3 -- app/controllers/index_controller.rb | 4 -- 3 files changed, 34 insertions(+), 35 deletions(-) delete mode 100644 app/assets/stylesheets/index.scss delete mode 100644 app/controllers/index_controller.rb diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index d2611f337..e9a50886e 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -35,6 +35,7 @@ h2 { margin: .25rem 0; + text-align: center; } a { @@ -42,12 +43,37 @@ text-decoration: none; } + header { + width: 100%; + background-color: #444; + text-align: center; + text-decoration: none; + padding: .5rem; + } + header.title { width: 100%; text-align: center; font-size: 1.25rem; } + nav { + text-decoration: none; + } + + nav ul li { + width: 30%; + margin: auto; + display: inline-block; + height: 2rem; + line-height: 2rem; + background-color: #898994; + } + + .newt { + background-color: #ABAB33; + } + /*INDEX*/ .task-info { display: inline-block; @@ -101,6 +127,7 @@ overflow: auto; } + .checkbox:hover { background-color: #E9E9E9; border: .25rem solid #E9E9E9; @@ -196,34 +223,13 @@ margin-top: 2%; } - - .black_overlay{ - display: none; - position: absolute; - top: 0%; - left: 0%; - width: 100%; - height: 100%; - background-color: black; - z-index:1001; - -moz-opacity: 0.8; - opacity:.80; - filter: alpha(opacity=80); - } - .white_content { - display: none; - position: absolute; - top: 25%; - left: 25%; - width: 50%; - height: 50%; - padding: 16px; - border: 16px solid orange; - background-color: white; - z-index:1002; - overflow: auto; - } - +.radio-butts { + width: 20%; + display: inline-block; + text-align: center; + margin: 2% 35%; + padding: auto; +} diff --git a/app/assets/stylesheets/index.scss b/app/assets/stylesheets/index.scss deleted file mode 100644 index fa113ba29..000000000 --- a/app/assets/stylesheets/index.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the index controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/index_controller.rb b/app/controllers/index_controller.rb deleted file mode 100644 index d045a57ed..000000000 --- a/app/controllers/index_controller.rb +++ /dev/null @@ -1,4 +0,0 @@ -class IndexController < ApplicationController - def show - end -end From bbd05b03c818190d312479bb1be3ec4d4d87d5fd Mon Sep 17 00:00:00 2001 From: Nicole Iwasaki Date: Mon, 25 Apr 2016 16:56:08 -0700 Subject: [PATCH 5/8] I don't know anything. Here's all the waves. Pretend it looks nice --- app/assets/javascripts/people.coffee | 3 + app/assets/stylesheets/people.scss | 3 + app/controllers/people_controller.rb | 11 + app/controllers/tasks_controller.rb | 7 +- app/helpers/index_helper.rb | 2 - app/helpers/people_helper.rb | 2 + app/views/index/show.html.erb | 2 - app/views/layouts/application.html.erb | 19 + app/views/people/index.html.erb | 6 + app/views/people/show.html.erb | 4 + app/views/tasks/index.html.erb | 12 +- app/views/tasks/new.html.erb | 23 +- config/routes.rb | 5 +- db/development.sqlite3 | Bin 24576 -> 24576 bytes .../20160423011027_add_tasks_to_people.rb | 5 + .../20160423011857_add_people_to_tasks.rb | 5 + db/schema.rb | 3 +- db/seeds.rb | 15 +- db/test.sqlite3 | Bin 0 -> 24576 bytes log/development.log | 5975 +++++++++++++++++ seeds.rb | 20 - test/controllers/index_controller_test.rb | 9 - test/controllers/people_controller_test.rb | 14 + 23 files changed, 6085 insertions(+), 60 deletions(-) create mode 100644 app/assets/javascripts/people.coffee create mode 100644 app/assets/stylesheets/people.scss create mode 100644 app/controllers/people_controller.rb delete mode 100644 app/helpers/index_helper.rb create mode 100644 app/helpers/people_helper.rb delete mode 100644 app/views/index/show.html.erb create mode 100644 app/views/people/index.html.erb create mode 100644 app/views/people/show.html.erb create mode 100644 db/migrate/20160423011027_add_tasks_to_people.rb create mode 100644 db/migrate/20160423011857_add_people_to_tasks.rb create mode 100644 db/test.sqlite3 delete mode 100644 seeds.rb delete mode 100644 test/controllers/index_controller_test.rb create mode 100644 test/controllers/people_controller_test.rb diff --git a/app/assets/javascripts/people.coffee b/app/assets/javascripts/people.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/people.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/people.scss b/app/assets/stylesheets/people.scss new file mode 100644 index 000000000..e6ee13d8f --- /dev/null +++ b/app/assets/stylesheets/people.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the people controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb new file mode 100644 index 000000000..3d600d001 --- /dev/null +++ b/app/controllers/people_controller.rb @@ -0,0 +1,11 @@ +class PeopleController < ApplicationController + def index + @people = Person.all + render :index + end + + def show + @person = Person.find(params[:id]) + render :show + end +end diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index a34f36adb..8b693dc93 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -16,6 +16,7 @@ def new def create #NEEDS MODEL TO ALTER @task = Task.new(create_task_params[:task]) + @task.person = Person.find(create_person_param[:person_id]) if @task.save @tasks = Task.order(completed: :asc) redirect_to root_path @@ -64,6 +65,10 @@ def update private def create_task_params - params.permit(task: [:task, :description]) + params.permit(task: [:task, :description], person: :person_id) + end + + def create_person_param + params.permit(:person_id) end end diff --git a/app/helpers/index_helper.rb b/app/helpers/index_helper.rb deleted file mode 100644 index cdc64c7fa..000000000 --- a/app/helpers/index_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module IndexHelper -end diff --git a/app/helpers/people_helper.rb b/app/helpers/people_helper.rb new file mode 100644 index 000000000..b682fbf12 --- /dev/null +++ b/app/helpers/people_helper.rb @@ -0,0 +1,2 @@ +module PeopleHelper +end diff --git a/app/views/index/show.html.erb b/app/views/index/show.html.erb deleted file mode 100644 index 211622446..000000000 --- a/app/views/index/show.html.erb +++ /dev/null @@ -1,2 +0,0 @@ -

Index#show

-

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

diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 1574d3924..ea829fe13 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -9,8 +9,27 @@ +
+

A Mathematical List of
Adventures to Complete

+ +
+
<%= yield %> +
diff --git a/app/views/people/index.html.erb b/app/views/people/index.html.erb new file mode 100644 index 000000000..5def164f8 --- /dev/null +++ b/app/views/people/index.html.erb @@ -0,0 +1,6 @@ +

People and their incomplete tasks:

+

<%@people.each do |person|%> + <%= link_to person.name, "/people/#{person.id}" %>: <%=person.tasks.length%> tasks +
+ <%end%> +

diff --git a/app/views/people/show.html.erb b/app/views/people/show.html.erb new file mode 100644 index 000000000..5cd2f4edb --- /dev/null +++ b/app/views/people/show.html.erb @@ -0,0 +1,4 @@ +

People#show

+

<%= @person.name %>'s ToDo:

+
+

<%=@person.tasks.where({completed: !=nil})%>

diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index d6b1fedb0..f7708e168 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,12 +1,7 @@ -
-

Do This Shit:

-
- -<%= link_to "New Task", tasks_new_path %>
-

Do:

+

Adventures to be had:

<% @tasks.each do |task| %>
@@ -16,7 +11,7 @@ <%end%>
- Belongs to: <%=task.person%> + Belongs to: <%=task.person.name %>
<%= link_to "/tasks/edit/#{task.id}" do%> @@ -41,6 +36,9 @@ <%=button_to "/tasks/uncomplete/#{task.id}" do%> <%end%> +
+ Belongs to: <%=task.person.name %> +
<%= link_to "/tasks/edit/#{task.id}" do%> diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 674b61684..228eacab2 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,17 +1,26 @@ +
<%= form_for @task do |f| %> + Adventure: <%= f.label :task do %> <%= f.text_field :task, placeholder: "PUPPIES" %> <%end%> + Description: <%= f.label :description do %> <%= f.text_area :description, placeholder: "Description" %> <%end%> - Owner of task: -
- Finn
- Jake
- PB
- BMO -
+
+ For: + <%= radio_button_tag(:person_id, 1) %> + <%= label_tag(:name, "Finn") %> + <%= radio_button_tag(:person_id, 2) %> + <%= label_tag(:name, "Jake") %> + <%= radio_button_tag(:person_id, 3) %> + <%= label_tag(:name, "PB") %> + <%= radio_button_tag(:person_id, 4) %> + <%= label_tag(:name, "BMO") %> +
+
<%= f.submit %> <% end %> +
diff --git a/config/routes.rb b/config/routes.rb index 7e2ac8d15..8571a094d 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,6 +1,5 @@ Rails.application.routes.draw do - get 'index/show' root 'tasks#index' @@ -12,6 +11,10 @@ get '/tasks/edit/:id' => 'tasks#edit' + get 'people/index' => 'people#index', as: 'people' + + get 'people/:id' => 'people#show', as: 'person' + post '/tasks' => 'tasks#create' # post '/' => 'tasks#create' diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 6993aa2ca0d79edf16873bbf43b061e18b47e2ea..7a6c02e1f25df376d5ba59ecfca99e3a10b212ee 100644 GIT binary patch literal 24576 zcmeI(%WvXF90&06gP@=iCw&OzHu7Z`?Xt0riGgj@I$5$!mp~pw+MJLBQ?M3n)|hPf zn5ch4|C5#W+FRRyp*>YqrApP_dg`TP9xW7T)u=gi^&Md|{{1`;f5>Iz$?0*~4H^B+ z54uiBvt*qJ0{NIyLdXU`R`@X~GOt9(qzIGB-+XV7%uk6VzajR{FGM+9`z`rn@{(6k zAOHafKmY;|fB*y_009Wxs=!q|7EkSL30GUL*JPg$Joov4)%%S$>pJzW+X|e}^}YUF zU}f*5WYPv&dTNV_4`shl}ZU;jD`!H{=(%77eRtY7YupA!`(tXC6v1vSHgtyNhqJ zv_fuqW=D*X4{ZBW=NVgklWFNo#*Q*O!m#v@Zt>xI0zJQJ<|MdfFr{K`)#5P$## zAOHafKmY;|fB*y_009X6zXcMav?+|X9muPKloCceK$2_U5P9u_C|@djYd`P`3Irek z0SG_<0uX=z1Rwwb2teRQ0!&VjJIRj-v2Ed~<9H$6@AxnHc6|O)+Q{&amZyeR)N@7C zqWnVB7QL;`=W_+aTAq>k+%~JDVOBqJTWz}UUNU;>ck5DuRHN72wmq9*7k=|4J@*In zk?-9J=@ZX?v3P)N-rAncWR0R}JkYg*WfhLa1kpzW2#*>!OeiT;7W+}8AUVGDSp3+hMvS3gvIhug%Sr zeqft0fdB}A00@8p2!H?xfB*=9z<)1rjHe5g#YOS!_hV;w-yOKYAYIR_ZZ+zy25Qys zZZuGJR8>Vct6sN?)|;)yy~Y-Lw6*@QzO{oMGtvIKG;cT}pr-nHA`| zQ77~Uu^0H+;!eb2K&+ocl4t{sd^dx&C;&!Lnkl@d>J)cX$r4I_?G+ZPL! z6&6Tgba`JGL2mLAUD$Yn9Qn8|k~Q6=mXWQYHZg2MWQ!`MVeM9m!u5rT^E%z` zKR$}y5K#OdjIjbgJITe3+stXrSX7KJxUcX;qkXCSj3 zv4p8a4aChATh)<-O+3-UxNTL}@fc>}tVs>~+VU5RKfPS9-_I9?cSf6|zHIQWWWyRa zN;MX9TEnk3i&nE$A`?qBsPXwsQP@0b)Z6Q!kGumHJqh~mZqPkKJHZgG1^#<6df*3# zX)6<XXKGjse_RxaX;UnlRKfb$Mn*N>HI_k(Nd`H75ck|L8F~J&&mLt@ z^Jr~}Wx%MzY-q+uPBadQCV8aU3Y9VYZrc3&vYe^8Opj@jW2||NjaG}82J7*)h0$mo z*{3l|m$@qA7)_a~rlRVb2}g2i&vJ}Aon)M1*+h{Q-s^0q*_hzzLS@C$4MXdSMWHqt zJguI~QZbBT)MB4)6k}7ux9#Ipc&M&ST!mZDnDS9Ds^^2fXu6<2?N{y+D1_1~_00Izz00bZa z0SG|gp9)Omgsk4nh?9)tcKEB2>zs^u%Wog^zTN6OUC$1jf$OgXk`HTUv2L=4RXS>z ztYkehpE2#C;To%2Oj}8!v2AV4J)dUK^qwTE8Cr-O*w1@><=vG)V!ncU@j==AO>#E2 zz4o!~F{@f+nK+g*&bJ#N#$mK|uUL%qQ1^Tid6hGF#L=R=|&xUFz!jvMeU_w>V9Qr+1Ro3n3l z(xW=K<#YNa+&1@@Z{tf)KRw)b?LOb7k^00CWp!&yJiR;3IphP{?(7^}%An1He`Fob z_Sa1Rwwb2tWV=5P$## zAOHaf%mq;Y<5z$H1Rwwb2tWV=5P$##AOHaftiM25|4YhSK{;1GD(|U-1_1~_00Izz z00bZa0SG_<0uX?}r4dL=F+FEw_l-g>Z)CGZ?jRli9?9jhdxb(i9g8B_J2|7UZ)DSA z6q$~?y?3xlJCc+$LHVG(Q_ht0OS3^N1OgC%00bZa0SG_<0uX=z1R(Ig3*3n7;&SmX YErjOPfBZ)%D*t2G"1"} + Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] +Completed 404 Not Found in 11ms (ActiveRecord: 0.7ms) + +ActiveRecord::RecordNotFound (Couldn't find Person with 'id'=1): + app/controllers/people_controller.rb:8:in `show' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.6ms) + + +Started GET "/" for ::1 at 2016-04-22 16:41:26 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (1.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (17.9ms) +Completed 200 OK in 284ms (Views: 270.2ms | ActiveRecord: 1.6ms) + + +Started GET "/" for ::1 at 2016-04-22 16:41:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:41:42 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 16:41:42 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:41:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 16:41:42 -0700 + + +Started GET "/assets/application.self-efc575bae7af301188dca92a8e4324888b8f463a1238f7551a826daaba2738f1.css?body=1" for ::1 at 2016-04-22 16:41:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 16:41:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 16:41:43 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 16:41:43 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 16:41:43 -0700 +  (1.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (1.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task" varchar, "description" varchar, "completed" varchar, "priority" varchar, "string" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.4ms) select sqlite_version(*) +  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.2ms) SELECT version FROM "schema_migrations" +  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215443') +  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419204601') +  (0.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (1.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task" varchar, "description" varchar, "completed" varchar, "priority" varchar, "string" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.2ms) SELECT version FROM "schema_migrations" +  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215443') +  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419204601') + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "The First Task"], ["description", ""], ["completed", "1982-05-15 16:59:23 -0700"], ["created_at", "2016-04-23 00:53:39.893015"], ["updated_at", "2016-04-23 00:53:39.893015"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Go to Brunch"], ["description", ""], ["created_at", "2016-04-23 00:53:39.898848"], ["updated_at", "2016-04-23 00:53:39.898848"]] +  (2.3ms) commit transaction +  (0.3ms) begin transaction + SQL (0.7ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Go to Lunch"], ["description", ""], ["completed", "1995-05-27 22:36:31 -0700"], ["created_at", "2016-04-23 00:53:39.905936"], ["updated_at", "2016-04-23 00:53:39.905936"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-23 00:53:39.909541"], ["updated_at", "2016-04-23 00:53:39.909541"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Play Video Games"], ["description", ""], ["completed", "1984-06-03 20:37:55 -0700"], ["created_at", "2016-04-23 00:53:39.912762"], ["updated_at", "2016-04-23 00:53:39.912762"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "High Five Somebody You Don't Know"], ["description", ""], ["completed", "1996-09-08 04:55:50 -0700"], ["created_at", "2016-04-23 00:53:39.916028"], ["updated_at", "2016-04-23 00:53:39.916028"]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Plant Flowers"], ["description", ""], ["completed", "1983-06-18 04:23:59 -0700"], ["created_at", "2016-04-23 00:53:39.921720"], ["updated_at", "2016-04-23 00:53:39.921720"]] +  (0.8ms) commit transaction +  (0.2ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Call Mom"], ["description", ""], ["created_at", "2016-04-23 00:53:39.925575"], ["updated_at", "2016-04-23 00:53:39.925575"]] +  (0.9ms) commit transaction +  (0.1ms) begin transaction + SQL (0.7ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "She worries, you know."], ["description", ""], ["created_at", "2016-04-23 00:53:39.929210"], ["updated_at", "2016-04-23 00:53:39.929210"]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Nap."], ["description", ""], ["completed", "1993-11-06 12:17:39 -0800"], ["created_at", "2016-04-23 00:53:39.933325"], ["updated_at", "2016-04-23 00:53:39.933325"]] +  (0.9ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Finn"], ["created_at", "2016-04-23 00:53:39.946352"], ["updated_at", "2016-04-23 00:53:39.946352"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Jake"], ["created_at", "2016-04-23 00:53:39.949588"], ["updated_at", "2016-04-23 00:53:39.949588"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "PB"], ["created_at", "2016-04-23 00:53:39.953242"], ["updated_at", "2016-04-23 00:53:39.953242"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "BMO"], ["created_at", "2016-04-23 00:53:39.956608"], ["updated_at", "2016-04-23 00:53:39.956608"]] +  (0.8ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Change Batteries"], ["description", ""], ["completed", "2013-01-16 06:01:04 -0800"], ["created_at", "2016-04-23 01:03:03.766025"], ["updated_at", "2016-04-23 01:03:03.766025"]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-23 01:03:03.771102"], ["updated_at", "2016-04-23 01:03:03.771102"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "High Five Somebody You Don't Know"], ["description", ""], ["completed", "1995-08-03 14:43:51 -0700"], ["created_at", "2016-04-23 01:03:03.774229"], ["updated_at", "2016-04-23 01:03:03.774229"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Plant Flowers"], ["description", ""], ["completed", "1993-03-03 01:14:45 -0800"], ["created_at", "2016-04-23 01:03:03.777139"], ["updated_at", "2016-04-23 01:03:03.777139"]] +  (0.8ms) commit transaction + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to AddTasksToPeople (20160423011027) +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160423011027"]] +  (0.6ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to AddTasksToPeople (20160423011027) +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20160423011027"]] +  (0.7ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to AddTasksToPeople (20160423011027) +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160423011027"]] +  (1.4ms) commit transaction +Migrating to AddPeopleToTasks (20160423011857) +  (0.1ms) begin transaction +  (0.4ms) ALTER TABLE "tasks" ADD "person_id" integer + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160423011857"]] +  (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" +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Change Batteries"], ["description", ""], ["completed", "1984-06-05 18:48:32 -0700"], ["created_at", "2016-04-23 01:20:38.959872"], ["updated_at", "2016-04-23 01:20:38.959872"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-23 01:20:38.963957"], ["updated_at", "2016-04-23 01:20:38.963957"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "High Five Somebody You Don't Know"], ["description", ""], ["completed", "1979-05-31 02:45:48 -0700"], ["created_at", "2016-04-23 01:20:38.966615"], ["updated_at", "2016-04-23 01:20:38.966615"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Plant Flowers"], ["description", ""], ["completed", "1973-04-09 19:22:11 -0800"], ["created_at", "2016-04-23 01:20:38.969430"], ["updated_at", "2016-04-23 01:20:38.969430"]] +  (0.7ms) commit transaction + Person Load (1.3ms) SELECT "people".* FROM "people" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Change Batteries"], ["description", ""], ["completed", "1971-06-29 18:41:21 -0700"], ["created_at", "2016-04-23 01:22:12.619594"], ["updated_at", "2016-04-23 01:22:12.619594"]] +  (1.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-23 01:22:12.624707"], ["updated_at", "2016-04-23 01:22:12.624707"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "High Five Somebody You Don't Know"], ["description", ""], ["completed", "2013-06-07 01:49:35 -0700"], ["created_at", "2016-04-23 01:22:12.627552"], ["updated_at", "2016-04-23 01:22:12.627552"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Plant Flowers"], ["description", ""], ["completed", "2003-04-19 21:42:20 -0700"], ["created_at", "2016-04-23 01:22:12.630271"], ["updated_at", "2016-04-23 01:22:12.630271"]] +  (0.7ms) commit transaction + + +Started GET "/" for ::1 at 2016-04-22 18:37:16 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (12.9ms) +Completed 200 OK in 36ms (Views: 32.8ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:37:16 -0700 + + +Started GET "/assets/application.self-efc575bae7af301188dca92a8e4324888b8f463a1238f7551a826daaba2738f1.css?body=1" for ::1 at 2016-04-22 18:37:16 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:37:16 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:37:16 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:37:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:37:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:37:16 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:37:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:37:16 -0700 + + +Started GET "/" for ::1 at 2016-04-22 18:38:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 31ms (Views: 29.8ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:38:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:38:31 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:38:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:38:31 -0700 + + +Started GET "/assets/application.self-69d1c8109d163e7c7971791776e6d23b0513ddc1aa6e9fd56679e844168a66d5.css?body=1" for ::1 at 2016-04-22 18:38:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:38:31 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:38:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:38:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:38:31 -0700 + + +Started GET "/" for ::1 at 2016-04-22 18:38:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-69d1c8109d163e7c7971791776e6d23b0513ddc1aa6e9fd56679e844168a66d5.css?body=1" for ::1 at 2016-04-22 18:38:50 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:38:50 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:38:50 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:38:50 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:38:50 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:38:50 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:38:50 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:38:50 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:38:50 -0700 + + +Started GET "/" for ::1 at 2016-04-22 18:38:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:38:52 -0700 + + +Started GET "/assets/application.self-69d1c8109d163e7c7971791776e6d23b0513ddc1aa6e9fd56679e844168a66d5.css?body=1" for ::1 at 2016-04-22 18:38:52 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:38:52 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:38:52 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:38:52 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:38:52 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:38:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:38:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:38:52 -0700 + + +Started GET "/" for ::1 at 2016-04-22 18:39:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (13.2ms) +Completed 200 OK in 46ms (Views: 44.5ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:39:06 -0700 + + +Started GET "/assets/application.self-2f197c4bbfd4d42ea87138bb3eb16037fe53b868d0638f4a3a635bd213cd721a.css?body=1" for ::1 at 2016-04-22 18:39:06 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:39:06 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:39:06 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:39:06 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:39:06 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:39:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:39:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:39:06 -0700 + + +Started GET "/" for ::1 at 2016-04-22 18:40:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:40:47 -0700 + + +Started GET "/assets/application.self-366ebbe11dbb5e116f59972c163122ece6a862a0ba0e78504ea89bc24794faf4.css?body=1" for ::1 at 2016-04-22 18:40:47 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:40:47 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:40:47 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:40:47 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:40:47 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:40:47 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:40:47 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:40:47 -0700 + + +Started GET "/" for ::1 at 2016-04-22 18:42:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/application.self-591858c1ed2a23d5085424b95367e6f8cfc51f93076940b7c64880d031e15a28.css?body=1" for ::1 at 2016-04-22 18:42:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:42:32 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:42:32 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:42:32 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:42:32 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:42:32 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:42:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:42:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:42:32 -0700 + + +Started POST "/tasks/complete/4" for ::1 at 2016-04-22 18:44:27 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"w3yW3eAmlLeePPPMV8tyF6Oa3EoYsIo0lwu+s+r/S97wtIT2PtcOaxDK6dbEYLlWzUL4wqWfRFNVs65Hn0ZZxQ==", "id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed", "-4712-01-01T00:00:00+00:00"], ["updated_at", "2016-04-23 01:44:27.119365"], ["id", 4]] +  (0.6ms) commit transaction + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (10.0ms) +Completed 200 OK in 45ms (Views: 28.8ms | ActiveRecord: 1.8ms) + + +Started POST "/tasks/complete/4" for ::1 at 2016-04-22 18:49:48 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"w3yW3eAmlLeePPPMV8tyF6Oa3EoYsIo0lwu+s+r/S97wtIT2PtcOaxDK6dbEYLlWzUL4wqWfRFNVs65Hn0ZZxQ==", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.0ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 36ms (Views: 34.0ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-7447c48eb908123b4a2cf77df4fcd49709032833b11a9a5634fe8ef957713b59.css?body=1" for ::1 at 2016-04-22 18:49:49 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:49:49 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:49:49 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:49:49 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:49:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:49:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:49:49 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:49:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:49:49 -0700 + + +Started POST "/tasks/complete/4" for ::1 at 2016-04-22 18:52:00 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"w3yW3eAmlLeePPPMV8tyF6Oa3EoYsIo0lwu+s+r/S97wtIT2PtcOaxDK6dbEYLlWzUL4wqWfRFNVs65Hn0ZZxQ==", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 30ms (Views: 27.2ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/application.self-7e07184d66f18b682400f01db6dcd16af48eb5a5c90e1237499d5ab7f3b2c327.css?body=1" for ::1 at 2016-04-22 18:52:00 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:52:00 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:52:00 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:52:00 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:52:00 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:52:00 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:52:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:52:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:52:00 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-22 18:52:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (11.9ms) +Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/" for ::1 at 2016-04-22 18:52:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/" for ::1 at 2016-04-22 18:53:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (8.0ms) +Completed 200 OK in 30ms (Views: 29.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:53:33 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:53:33 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:53:33 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:53:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:53:33 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:53:33 -0700 + + +Started GET "/assets/application.self-b9f50f9ea2e8d1b5eb125e7219ac15f2dcfbe779895d98a2772a744be3100c5a.css?body=1" for ::1 at 2016-04-22 18:53:33 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:53:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:53:33 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-22 18:57:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 34ms (Views: 33.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:57:17 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 18:57:17 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 18:57:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:57:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 18:57:18 -0700 + + +Started GET "/assets/application.self-65bbb280efa59841e9857488a9213b742d2c0467b12b96d0b0867385c1adf06f.css?body=1" for ::1 at 2016-04-22 18:57:18 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 18:57:18 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 18:57:18 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 18:57:18 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-22 19:04:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 19:04:40 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 19:04:40 -0700 + + +Started GET "/assets/application.self-65bbb280efa59841e9857488a9213b742d2c0467b12b96d0b0867385c1adf06f.css?body=1" for ::1 at 2016-04-22 19:04:40 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 19:04:40 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 19:04:40 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 19:04:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 19:04:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 19:04:40 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 19:04:40 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-22 19:05:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 19:05:31 -0700 + + +Started GET "/assets/application.self-65bbb280efa59841e9857488a9213b742d2c0467b12b96d0b0867385c1adf06f.css?body=1" for ::1 at 2016-04-22 19:05:31 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 19:05:31 -0700 + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 19:05:31 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 19:05:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 19:05:31 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 19:05:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 19:05:31 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 19:05:31 -0700 + + +Started GET "/tasks/" for ::1 at 2016-04-22 19:05:54 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 19:05:54 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-22 19:05:54 -0700 + + +Started GET "/assets/application.self-65bbb280efa59841e9857488a9213b742d2c0467b12b96d0b0867385c1adf06f.css?body=1" for ::1 at 2016-04-22 19:05:54 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-22 19:05:54 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-22 19:05:55 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-22 19:05:55 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 19:05:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-22 19:05:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-22 19:05:55 -0700 + + +Started GET "/" for ::1 at 2016-04-25 11:07:10 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (23.0ms) +Completed 200 OK in 262ms (Views: 249.2ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/application.self-9592b88dcd7f1a8147429a20a598153164d90a319e31de2de3a7023090b04261.css?body=1" for ::1 at 2016-04-25 11:07:11 -0700 + + +Started GET "/tasks/8" for ::1 at 2016-04-25 11:07:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/taskpage.html.erb within layouts/application (0.5ms) +Completed 200 OK in 27ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 11:07:52 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (30.7ms) +Completed 200 OK in 50ms (Views: 49.2ms | ActiveRecord: 0.0ms) +  (0.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (1.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task" varchar, "description" varchar, "completed" varchar, "priority" varchar, "string" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer) +  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.3ms) select sqlite_version(*) +  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.2ms) SELECT version FROM "schema_migrations" +  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160423011857') +  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419204601') +  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215443') +  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20160423011027') +  (1.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (2.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task" varchar, "description" varchar, "completed" varchar, "priority" varchar, "string" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer) +  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.2ms) SELECT version FROM "schema_migrations" +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160423011857') +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419204601') +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215443') +  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160423011027') + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Change Batteries"], ["description", ""], ["completed", "1984-02-11 17:02:00 -0800"], ["created_at", "2016-04-25 21:48:45.008168"], ["updated_at", "2016-04-25 21:48:45.008168"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-25 21:48:45.014440"], ["updated_at", "2016-04-25 21:48:45.014440"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "High Five Somebody You Don't Know"], ["description", ""], ["completed", "1992-07-03 01:43:23 -0700"], ["created_at", "2016-04-25 21:48:45.017279"], ["updated_at", "2016-04-25 21:48:45.017279"]] +  (10.3ms) commit transaction +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Plant Flowers"], ["description", ""], ["completed", "1978-05-09 11:53:51 -0700"], ["created_at", "2016-04-25 21:48:45.030562"], ["updated_at", "2016-04-25 21:48:45.030562"]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Finn"], ["created_at", "2016-04-25 21:48:45.041518"], ["updated_at", "2016-04-25 21:48:45.041518"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Jake"], ["created_at", "2016-04-25 21:48:45.044359"], ["updated_at", "2016-04-25 21:48:45.044359"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "PB"], ["created_at", "2016-04-25 21:48:45.046632"], ["updated_at", "2016-04-25 21:48:45.046632"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "BMO"], ["created_at", "2016-04-25 21:48:45.048745"], ["updated_at", "2016-04-25 21:48:45.048745"]] +  (0.5ms) commit transaction +  (0.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (1.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task" varchar, "description" varchar, "completed" varchar, "priority" varchar, "string" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer) +  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.2ms) SELECT version FROM "schema_migrations" +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160423011857') +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419204601') +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215443') +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160423011027') +  (0.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (2.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task" varchar, "description" varchar, "completed" varchar, "priority" varchar, "string" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "person_id" integer) +  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.1ms) SELECT version FROM "schema_migrations" +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160423011857') +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160419204601') +  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20160422215443') +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160423011027') + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("task", "description", "completed", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["task", "Change Batteries"], ["description", ""], ["completed", "1975-11-28 10:13:21 -0800"], ["person_id", 4], ["created_at", "2016-04-25 21:49:42.614410"], ["updated_at", "2016-04-25 21:49:42.614410"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["task", "Go to Second Lunch"], ["description", ""], ["created_at", "2016-04-25 21:49:42.619601"], ["updated_at", "2016-04-25 21:49:42.619601"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "High Five Somebody You Don't Know"], ["description", ""], ["completed", "1988-12-15 22:26:36 -0800"], ["created_at", "2016-04-25 21:49:42.622388"], ["updated_at", "2016-04-25 21:49:42.622388"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("task", "description", "completed", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["task", "Plant Flowers"], ["description", ""], ["completed", "1981-02-25 13:05:01 -0800"], ["created_at", "2016-04-25 21:49:42.625070"], ["updated_at", "2016-04-25 21:49:42.625070"]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.7ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Finn"], ["created_at", "2016-04-25 21:49:42.639334"], ["updated_at", "2016-04-25 21:49:42.639334"]] +  (1.0ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Jake"], ["created_at", "2016-04-25 21:49:42.644203"], ["updated_at", "2016-04-25 21:49:42.644203"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "PB"], ["created_at", "2016-04-25 21:49:42.646470"], ["updated_at", "2016-04-25 21:49:42.646470"]] +  (0.5ms) commit transaction +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "people" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "BMO"], ["created_at", "2016-04-25 21:49:42.648594"], ["updated_at", "2016-04-25 21:49:42.648594"]] +  (0.6ms) commit transaction + + +Started GET "/" for ::1 at 2016-04-25 14:49:55 -0700 +Processing by TasksController#index as HTML + Task Load (1.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (21.3ms) +Completed 200 OK in 63ms (Views: 53.6ms | ActiveRecord: 1.6ms) + + +Started GET "/assets/people.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:49:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-04-25 14:49:56 -0700 + + +Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for ::1 at 2016-04-25 14:49:56 -0700 + + +Started GET "/assets/application.self-9592b88dcd7f1a8147429a20a598153164d90a319e31de2de3a7023090b04261.css?body=1" for ::1 at 2016-04-25 14:49:56 -0700 + + +Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for ::1 at 2016-04-25 14:49:56 -0700 + + +Started GET "/assets/turbolinks.self-c37727e9bd6b2735da5c311aa83fead54ed0be6cc8bd9a65309e9c5abe2cbfff.js?body=1" for ::1 at 2016-04-25 14:49:56 -0700 + + +Started GET "/assets/people.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:49:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-04-25 14:49:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-04-25 14:49:56 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-04-25 14:49:59 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 14:51:46 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.9ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2016-04-25 14:58:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (15.7ms) +Completed 200 OK in 42ms (Views: 37.6ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 14:58:18 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/new.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/new.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (96.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 14:58:18 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/new.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/new.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (49.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.3ms) + + +Started GET "/" for ::1 at 2016-04-25 15:17:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."completed" ASC + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:17:06 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.9ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `model_name' for nil:NilClass): + 8: <%= f.text_area :description, placeholder: "Description" %> + 9: <%end%> + 10: Owner of task: + 11: <%=fields_for @task.person do |p|%> + 12: <%= p.radio_button :person, 'Finn', :checked => true %> + 13: <%= label :person, 'Finn', :value => p.id %> + 14: <%= p.radio_button :person, 'Jake' %> + app/views/tasks/new.html.erb:11:in `block in _app_views_tasks_new_html_erb__3054372922431924283_70294410484640' + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__3054372922431924283_70294410484640' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (94.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:17:06 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.8ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `model_name' for nil:NilClass): + 8: <%= f.text_area :description, placeholder: "Description" %> + 9: <%end%> + 10: Owner of task: + 11: <%=fields_for @task.person do |p|%> + 12: <%= p.radio_button :person, 'Finn', :checked => true %> + 13: <%= label :person, 'Finn', :value => p.id %> + 14: <%= p.radio_button :person, 'Jake' %> + app/views/tasks/new.html.erb:11:in `block in _app_views_tasks_new_html_erb__3054372922431924283_70294409058600' + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__3054372922431924283_70294409058600' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:17:29 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.7ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `model_name' for nil:NilClass): + 8: <%= f.text_area :description, placeholder: "Description" %> + 9: <%end%> + 10: Owner of task: + 11: <%=fields_for @task.person_id do |p|%> + 12: <%= p.radio_button :person, 'Finn', :checked => true %> + 13: <%= label :person, 'Finn', :value => p.id %> + 14: <%= p.radio_button :person, 'Jake' %> + app/views/tasks/new.html.erb:11:in `block in _app_views_tasks_new_html_erb__3054372922431924283_70294377209900' + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__3054372922431924283_70294377209900' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (40.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (88.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:17:32 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.4ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `model_name' for nil:NilClass): + 8: <%= f.text_area :description, placeholder: "Description" %> + 9: <%end%> + 10: Owner of task: + 11: <%=fields_for @task.person_id do |p|%> + 12: <%= p.radio_button :person, 'Finn', :checked => true %> + 13: <%= label :person, 'Finn', :value => p.id %> + 14: <%= p.radio_button :person, 'Jake' %> + app/views/tasks/new.html.erb:11:in `block in _app_views_tasks_new_html_erb__3054372922431924283_70294377209900' + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__3054372922431924283_70294377209900' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.1ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.8ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:19:40 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/nicosaki/Dropbox/Ada/C5/projects/TaskListRails/app/views/tasks/new.html.erb:26: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/new.html.erb:26: syntax error, unexpected keyword_ensure, expecting end-of-input + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.6ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (39.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (86.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:20:48 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (9.1ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 8: <%= f.text_area :description, placeholder: "Description" %> + 9: <%end%> + 10: Owner of task: + 11: <%=form_for @task.person_id do |p|%> + 12: <%= p.radio_button :person, 'Finn', :checked => true %> + 13: <%= label :person, 'Finn', :value => p.id %> + 14: <%= p.radio_button :person, 'Jake' %> + app/views/tasks/new.html.erb:11:in `block in _app_views_tasks_new_html_erb__3054372922431924283_70294406388880' + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__3054372922431924283_70294406388880' + app/controllers/tasks_controller.rb:14:in `new' + + + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.9ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (41.2ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/nicosaki/.rvm/gems/ruby-2.3.0@TaskListRails/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (87.9ms) + + +Started GET "/tasks/new" for ::1 at 2016-04-25 15:21:39 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.5ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 13: PB
+ 14: BMO + 15: