diff --git a/.gitignore b/.gitignore index 28f484983..318c5ab5b 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,9 @@ build/ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: .rvmrc + +#Ignore pesky DS_Store +.DS_Store + +# Ignore the .env file (it's full of secrets!) +/.env diff --git a/.ruby-gemset b/.ruby-gemset deleted file mode 100644 index 5d2410e51..000000000 --- a/.ruby-gemset +++ /dev/null @@ -1 +0,0 @@ -TaskListRails diff --git a/.ruby-version b/.ruby-version deleted file mode 100644 index 276cbf9e2..000000000 --- a/.ruby-version +++ /dev/null @@ -1 +0,0 @@ -2.3.0 diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..9bdba56ad --- /dev/null +++ b/Gemfile @@ -0,0 +1,58 @@ +source 'https://rubygems.org' + +#Gems for pushing to Heroku +gem 'pg', group: :production +gem 'rails_12factor', group: :production +# Make text print prettily +gem 'awesome_print', require: 'ap' +#Omniauth for authorization +gem "omniauth" +gem "omniauth-github" +# Make tables print prettily +gem 'hirb' +gem 'hirb-unicode' +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '4.2.7' +# Use sqlite3 as the database for Active Record +gem 'sqlite3', group: [:development, :test] +# 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' + gem 'dotenv-rails' +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' + gem 'better_errors' +end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..262782111 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,216 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.2.7) + actionpack (= 4.2.7) + actionview (= 4.2.7) + activejob (= 4.2.7) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 1.0, >= 1.0.5) + actionpack (4.2.7) + actionview (= 4.2.7) + activesupport (= 4.2.7) + rack (~> 1.6) + rack-test (~> 0.6.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (4.2.7) + activesupport (= 4.2.7) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + activejob (4.2.7) + activesupport (= 4.2.7) + globalid (>= 0.3.0) + activemodel (4.2.7) + activesupport (= 4.2.7) + builder (~> 3.1) + activerecord (4.2.7) + activemodel (= 4.2.7) + activesupport (= 4.2.7) + arel (~> 6.0) + activesupport (4.2.7) + i18n (~> 0.7) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + arel (6.0.3) + awesome_print (1.7.0) + bcrypt (3.1.11) + better_errors (2.1.1) + coderay (>= 1.0.0) + erubis (>= 2.6.6) + rack (>= 0.9.0) + binding_of_caller (0.7.2) + debug_inspector (>= 0.0.1) + builder (3.2.2) + byebug (9.0.5) + coderay (1.1.1) + coffee-rails (4.1.1) + coffee-script (>= 2.2.0) + railties (>= 4.0.0, < 5.1.x) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.10.0) + concurrent-ruby (1.0.2) + debug_inspector (0.0.2) + dotenv (2.1.1) + dotenv-rails (2.1.1) + dotenv (= 2.1.1) + railties (>= 4.0, < 5.1) + erubis (2.7.0) + execjs (2.7.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) + globalid (0.3.7) + activesupport (>= 4.1.0) + hashie (3.4.6) + hirb (0.7.3) + hirb-unicode (0.0.5) + hirb (~> 0.5) + unicode-display_width (~> 0.1.1) + i18n (0.7.0) + jbuilder (2.6.0) + activesupport (>= 3.0.0, < 5.1) + multi_json (~> 1.2) + jquery-rails (4.2.1) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + json (1.8.3) + jwt (1.5.6) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.4) + mime-types (>= 1.16, < 4) + mime-types (3.1) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0521) + mini_portile2 (2.1.0) + minitest (5.9.1) + multi_json (1.12.1) + multi_xml (0.5.5) + multipart-post (2.0.0) + nokogiri (1.6.8) + mini_portile2 (~> 2.1.0) + pkg-config (~> 1.1.7) + oauth2 (1.2.0) + faraday (>= 0.8, < 0.10) + jwt (~> 1.0) + multi_json (~> 1.3) + multi_xml (~> 0.5) + rack (>= 1.2, < 3) + omniauth (1.3.1) + hashie (>= 1.2, < 4) + rack (>= 1.0, < 3) + omniauth-github (1.1.2) + omniauth (~> 1.0) + omniauth-oauth2 (~> 1.1) + omniauth-oauth2 (1.4.0) + oauth2 (~> 1.0) + omniauth (~> 1.2) + pg (0.19.0) + pkg-config (1.1.7) + rack (1.6.4) + rack-test (0.6.3) + rack (>= 1.0) + rails (4.2.7) + actionmailer (= 4.2.7) + actionpack (= 4.2.7) + actionview (= 4.2.7) + activejob (= 4.2.7) + activemodel (= 4.2.7) + activerecord (= 4.2.7) + activesupport (= 4.2.7) + bundler (>= 1.3.0, < 2.0) + railties (= 4.2.7) + sprockets-rails + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.7) + activesupport (>= 4.2.0.beta, < 5.0) + nokogiri (~> 1.6.0) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + rails_12factor (0.0.3) + rails_serve_static_assets + rails_stdout_logging + rails_serve_static_assets (0.0.5) + rails_stdout_logging (0.0.5) + railties (4.2.7) + actionpack (= 4.2.7) + activesupport (= 4.2.7) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (11.3.0) + rdoc (4.2.2) + json (~> 1.4) + sass (3.4.22) + sass-rails (5.0.6) + railties (>= 4.0.0, < 6) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + sdoc (0.4.1) + json (~> 1.7, >= 1.7.7) + rdoc (~> 4.0) + spring (1.7.2) + sprockets (3.7.0) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.2.0) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + sqlite3 (1.3.11) + thor (0.19.1) + thread_safe (0.3.5) + tilt (2.0.5) + turbolinks (5.0.1) + turbolinks-source (~> 5) + turbolinks-source (5.0.0) + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (3.0.2) + execjs (>= 0.3.0, < 3) + unicode-display_width (0.1.1) + 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 + awesome_print + bcrypt (~> 3.1.7) + better_errors + byebug + coffee-rails (~> 4.1.0) + dotenv-rails + hirb + hirb-unicode + jbuilder (~> 2.0) + jquery-rails + omniauth + omniauth-github + pg + rails (= 4.2.7) + rails_12factor + sass-rails (~> 5.0) + sdoc (~> 0.4.0) + spring + sqlite3 + turbolinks + uglifier (>= 1.3.0) + web-console (~> 2.0) + +BUNDLED WITH + 1.13.5 diff --git a/README.md b/README.md index 2b96daf9c..2cde02025 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ +#Reflection +**What went well?** +The views and controller went nicely, they felt pretty solid. The embedded Ruby was also fun! I feel like this helped stitch together my knowledge of Ruby + HTML/CSS which was super satisfying. Overall this felt very good as a first solo Rails project, hoping everything will just stick a little more and more over time (aka not looking back at live-codes for reference as much). + +**What are you still working on understanding better?** +The routes for sure still confuse me, I felt like I just threw everything at them and hoped something sticked. I also would like to get a better workflow down, I think I get a bit overwhelmed with all the interworking parts of a Rails project and that leads to some things being dropped (aka naming a method 'button' & forgetting to rename it LOL). + +**What did your chair pair do differently?** +We did pretty much the same thing, our approaches to design were just a bit different. I liked how she used a checkbox for completion on the show view. Her CSS was awesome - it was nice to see something a bit more embellished since I tend to go the simple route for design. + # Task List Rails ✅ We are going to build a Task List in Rails. This web application will enable us to keep track of list of tasks with the functionality to add, edit and remove tasks from a list. @@ -50,7 +60,7 @@ In this wave we will add the first set of user interactivity and persistence. 1. Ask the user to confirm that they definitely want to delete the task. 1. Delete the task from the database and redirect the user back to the list of remaining tasks - 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/images/default_icon.jpg b/app/assets/images/default_icon.jpg new file mode 100644 index 000000000..602d89b51 Binary files /dev/null and b/app/assets/images/default_icon.jpg differ 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/pages.coffee b/app/assets/javascripts/pages.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/pages.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/javascripts/sessions.coffee b/app/assets/javascripts/sessions.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/sessions.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/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/javascripts/users.coffee b/app/assets/javascripts/users.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/users.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..f9cd5b348 --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,15 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, + * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any styles + * defined in the other CSS/SCSS files in this directory. It is generally better to create a new + * file per style scope. + * + *= require_tree . + *= require_self + */ diff --git a/app/assets/stylesheets/pages.scss b/app/assets/stylesheets/pages.scss new file mode 100644 index 000000000..0d6878aa1 --- /dev/null +++ b/app/assets/stylesheets/pages.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the pages controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/sessions.scss b/app/assets/stylesheets/sessions.scss new file mode 100644 index 000000000..7bef9cf82 --- /dev/null +++ b/app/assets/stylesheets/sessions.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the sessions controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/style.css b/app/assets/stylesheets/style.css new file mode 100644 index 000000000..7d73d69e6 --- /dev/null +++ b/app/assets/stylesheets/style.css @@ -0,0 +1,96 @@ +body { + font-family: helvetica; + width: 70%; + margin: auto; + display: flex; + flex-direction: column; + min-height: 100vh; +} + +h1 { + text-align: center; +} + +h5 { + display: inline-block; + margin: 1.1em; +} + +div { + margin: 0 auto; + +} + +article { + width: 50%; + margin: 0 auto; +} + +a { + text-decoration: none; + color: rgb(93, 93, 93); +} + +a:hover { + opacity: .6; +} + +a:visited { + color: rgb(93, 93, 93); +} + +nav { + padding: 10px 10px; + font-size: 1.1em; + text-align: center; +} + +nav a { + padding: 10px 20px; +} + +.site-nav { + float: left; +} + +.user-nav { + float: right; +} + +input[type="text"], textarea, label { + width : 100%; + margin: 0; + display: block; +} + +input[type="submit"] { + margin: 0 auto; +} + +footer { + margin-top: auto; + text-align: center; + font-size: .7em; + padding: 1em; +} + +.done { + text-decoration: line-through; +} + +img { + width: 10rem; +} + +.center { + margin: 0 auto; + text-align: center; +} + +.alert { + color: rgb(179, 0, 0); +} + +.login-signup { + margin: 4rem auto; +} diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss new file mode 100644 index 000000000..c5e7712d4 --- /dev/null +++ b/app/assets/stylesheets/tasks.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Tasks controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/users.scss b/app/assets/stylesheets/users.scss new file mode 100644 index 000000000..1efc835cc --- /dev/null +++ b/app/assets/stylesheets/users.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the users 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..80ebcc83c --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,15 @@ +class ApplicationController < ActionController::Base + # Prevent CSRF attacks by raising an exception. + # For APIs, you may want to use :null_session instead. + protect_from_forgery with: :exception + + helper_method :current_user + + def current_user + @current_user ||= User.find(session[:user_id]) if session[:user_id] + end + + def require_user + redirect_to '/login' unless current_user + end +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/pages_controller.rb b/app/controllers/pages_controller.rb new file mode 100644 index 000000000..3c39a88f4 --- /dev/null +++ b/app/controllers/pages_controller.rb @@ -0,0 +1,7 @@ +class PagesController < ApplicationController + def index + if session[:user_id] != nil + redirect_to '/tasks/index' + end + end +end diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb new file mode 100644 index 000000000..8cb48e36a --- /dev/null +++ b/app/controllers/sessions_controller.rb @@ -0,0 +1,45 @@ +class SessionsController < ApplicationController + def new + if session[:user_id] != nil + redirect_to root_path + else + @user = User.new + end + end + + def create_via_github + auth_hash = request.env['omniauth.auth'] + + flash[:notice] = "Login failed!" + return redirect_to root_path unless auth_hash['uid'] + + @user = User.find_by(uid: auth_hash[:uid], provider: 'github') + if @user.nil? + @user = User.build_from_github(auth_hash) + flash[:notice] = "Unable to save user." + return redirect_to root_path unless @user.save + end + + session[:user_id] = @user.id + flash[:notice] = "Successfully logged in!" + redirect_to root_path + end + + def create_via_login + @user = User.find_by_email(params[:session][:email]) + if @user && @user.authenticate(params[:session][:password]) + session[:user_id] = @user.id + flash[:notice] = "Successfully logged in!" + redirect_to root_path + else + flash[:notice] = "Login failed!" + redirect_to '/login', method: :get + end + end + + def destroy + session[:user_id] = nil + redirect_to root_path + end + +end diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb new file mode 100644 index 000000000..6091de511 --- /dev/null +++ b/app/controllers/tasks_controller.rb @@ -0,0 +1,73 @@ +class TasksController < ApplicationController + before_action :require_user + before_action :find_task, only: [:show, :edit, :update, :destroy, :complete_toggle] + + def index + @tasks = Task.where(user_id: session[:user_id]) + end + + def show + @datetime = @task.completed_at + + if @task.completed_at != nil + @status = "Done at #{@datetime.strftime('%I:%M %P')} on #{@datetime.strftime('%B %e, %Y')}" + else + @status = "Still in progress" + end + end + + def new + @task = Task.new + @path = create_path + end + + def create + @task = Task.new(task_params) + + if @task.save + flash[:notice] = "Task successfully created" + redirect_to root_path + else + flash[:notice] = @task.errors.full_messages + redirect_to "/tasks/new" + end + end + + def edit + find_task + @path = update_path + end + + def complete_toggle + @task.completed? + + redirect_to show_path + end + + def update + find_task + @task.update(task_params) + + redirect_to root_path + end + + def destroy + @task.destroy + + redirect_to root_path + end + + private + #This can be for security purposes (probably more important for user) + def task_params + params.require(:task).permit(:title, :description, :completed_at, :user_id) + end + + def find_task + if Task.find(params[:id]).user_id == session[:user_id] + @task = Task.find(params[:id]) + else + redirect_to root_path + end + end +end diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb new file mode 100644 index 000000000..24e487dde --- /dev/null +++ b/app/controllers/users_controller.rb @@ -0,0 +1,48 @@ +class UsersController < ApplicationController + def index + end + + def show + find_user + + if @user.id != session[:user_id] + redirect_to index_path + end + end + + def new + @user = User.new + end + + def create + @user = User.new(user_params) + @user.avatar = "default_icon.jpg" + + if @user.save + session[:user_id] = @user.id + redirect_to index_path + else + redirect_to new_user_path + end + end + + def edit + end + + def update + end + + def destroy + end + + private + def find_user + @user = User.find(params[:id].to_i) + end + + private + def user_params + params.require(:user).permit(:name, :email, :password) + 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/pages_helper.rb b/app/helpers/pages_helper.rb new file mode 100644 index 000000000..2c057fd05 --- /dev/null +++ b/app/helpers/pages_helper.rb @@ -0,0 +1,2 @@ +module PagesHelper +end diff --git a/app/helpers/sessions_helper.rb b/app/helpers/sessions_helper.rb new file mode 100644 index 000000000..309f8b2eb --- /dev/null +++ b/app/helpers/sessions_helper.rb @@ -0,0 +1,2 @@ +module SessionsHelper +end diff --git a/app/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/helpers/users_helper.rb b/app/helpers/users_helper.rb new file mode 100644 index 000000000..2310a240d --- /dev/null +++ b/app/helpers/users_helper.rb @@ -0,0 +1,2 @@ +module UsersHelper +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..93a3a600a --- /dev/null +++ b/app/models/task.rb @@ -0,0 +1,10 @@ +class Task < ActiveRecord::Base + belongs_to :user + validates :title, :description, presence: true + + def completed? + self.completed_at == nil ? self.completed_at = Time.now : self.completed_at = nil + + self.save + end +end diff --git a/app/models/user.rb b/app/models/user.rb new file mode 100644 index 000000000..b3fbbf28c --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,26 @@ +class User < ActiveRecord::Base + has_secure_password + + has_many :tasks + + validates_presence_of :name, :email + validate :valid_email + + def self.build_from_github(auth_hash) + user = User.new + user.uid = auth_hash[:uid] + user.provider = 'github' + user.name = auth_hash['info']['name'] + user.email = auth_hash['info']['email'] + user.avatar = auth_hash['extra']['raw_info']['avatar_url'] + user.authenticated = true + + return user + end + + def valid_email + if self.email != nil && !self.email.include?("@") + errors.add(:users, "Invalid email") + end + end +end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 000000000..69fdfbcea --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,34 @@ + + + + Task List + <%= 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/pages/index.html.erb b/app/views/pages/index.html.erb new file mode 100644 index 000000000..2d2769c9b --- /dev/null +++ b/app/views/pages/index.html.erb @@ -0,0 +1,3 @@ +

Welcome to Task List

+

With Task List, you can keep track of all your tasks in one place. 🎉

+

Please log in to get started.

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

Sessions#create

+

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

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

Sign In

+ <% if flash[:notice] != nil %> +
+ <%= flash[:notice] %> +
+ <% end %> + + <%= form_for :session, url: login_path do |f| %> + <%= f.email_field :email, :placeholder => "Email" %> + <%= f.password_field :password, :placeholder => "Password" %> + <%= f.submit "Log in", class: "btn-submit" %> + <% end %> +
+ +
+

Not signed up for Task List yet?

+

Sign up below or sign in via Github above.

+ + <%= form_for @user, url: users_path do |f| %> + <%= f.text_field :name, :placeholder => "Name" %> + <%= f.email_field :email, :placeholder => "Email" %> + <%= f.password_field :password, :placeholder => "Password" %> + <%= f.submit "Create an account" %> + <% end %> +
+
diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb new file mode 100644 index 000000000..2b45f20ce --- /dev/null +++ b/app/views/tasks/_form.html.erb @@ -0,0 +1,26 @@ +<% if flash[:notice] != nil %> +
+ <% if flash[:notice].length > 1 %> + <%= flash[:notice].join("
").html_safe %> + <% else %> + <%= flash[:notice] %> + <% end %> +
+<% end %> + +<%= form_for @task, url: action_name do |f| %> + <%= f.hidden_field :user_id, value: session[:user_id] %> + + <%= f.label :title %> + <%= f.text_field :title%> + + <%= f.label :description %> + <%= f.text_area :description %> + + <% if @task.id != nil %> + <%= f.label :completed_at %> + <%= f.datetime_local_field :completed_at %> + <% end %> + + <%= f.submit %> +<% end %> diff --git a/app/views/tasks/create.html.erb b/app/views/tasks/create.html.erb new file mode 100644 index 000000000..f0a4243b9 --- /dev/null +++ b/app/views/tasks/create.html.erb @@ -0,0 +1 @@ +

Tasks#create

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

Tasks#destroy

+

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

+

Keeping this as GET instead of DELETE for http verb to test that it's going to the right page

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

Edit Your Task

+ +<%= render partial: 'form', locals: { action_name: "update" } %> + diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb new file mode 100644 index 000000000..92356acd4 --- /dev/null +++ b/app/views/tasks/index.html.erb @@ -0,0 +1,20 @@ +
+ <% if flash[:notice] != nil %> +
+ <%= flash[:notice] %> +
+ <% end %> + +

Your Tasks

+
    + <% @tasks.each do |task| %> +
  1. + <% if task[:completed_at] == nil %> + <%= link_to(task.title, show_path(task[:id])) %> + <% else %> +
    <%= link_to(task.title, show_path(task[:id])) %>
    + <% end %> +
  2. + <% end %> +
+
diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb new file mode 100644 index 000000000..b12dc62aa --- /dev/null +++ b/app/views/tasks/new.html.erb @@ -0,0 +1,12 @@ +

Add a Task

+ +<%= render partial: 'form', locals: { action_name: "create" }%> + diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb new file mode 100644 index 000000000..9c48392ec --- /dev/null +++ b/app/views/tasks/show.html.erb @@ -0,0 +1,16 @@ +

<%= @task.title %>

+
+

Description:

+

+ <%= @task.description %> +

+

Status:

+

+ <%= @status %> +

+
+
+
<%= button_to("Complete?", complete_toggle_path(@task[:id]), method: :patch) %>
+
<%= button_to("Edit", edit_path(@task[:id]), method: :get) %>
+
<%= button_to("Delete", {action: "destroy", id: @task[:id]}, method: :delete, data: {confirm: "Are you sure you want to delete this?"}) %>
+
diff --git a/app/views/tasks/update.html.erb b/app/views/tasks/update.html.erb new file mode 100644 index 000000000..fdb1ea609 --- /dev/null +++ b/app/views/tasks/update.html.erb @@ -0,0 +1,2 @@ +

Tasks#update

+

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

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

Users#create

+

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

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

Users#destroy

+

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

diff --git a/app/views/users/edit.html.erb b/app/views/users/edit.html.erb new file mode 100644 index 000000000..17fe8fb4d --- /dev/null +++ b/app/views/users/edit.html.erb @@ -0,0 +1,7 @@ +

Edit Your Profile

+<%# form_for @user do |f| %> + <%# f.text_field :name, :placeholder => "Name" %> + <%# f.email_field :email, :placeholder => "Email" %> + <%# f.password_field :password, :placeholder => "Password" %> + <%# f.submit "Create an account" %> +<%# end %> diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb new file mode 100644 index 000000000..51968c88d --- /dev/null +++ b/app/views/users/index.html.erb @@ -0,0 +1,2 @@ +

Users#index

+

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

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

Sign Up for Task List

+ <%= form_for @user do |f| %> + <%= f.text_field :name, :placeholder => "Name" %> + <%= f.email_field :email, :placeholder => "Email" %> + <%= f.password_field :password, :placeholder => "Password" %> + <%= f.submit "Create an account" %> + <% end %> +
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb new file mode 100644 index 000000000..568760669 --- /dev/null +++ b/app/views/users/show.html.erb @@ -0,0 +1,6 @@ +

Your Profile

+
+

Welcome, <%= @user.name %>

+ + <%= image_tag @user.avatar %> +
diff --git a/app/views/users/update.html.erb b/app/views/users/update.html.erb new file mode 100644 index 000000000..cabbde176 --- /dev/null +++ b/app/views/users/update.html.erb @@ -0,0 +1,2 @@ +

Users#update

+

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

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/omniauth.rb b/config/initializers/omniauth.rb new file mode 100644 index 000000000..fd4416122 --- /dev/null +++ b/config/initializers/omniauth.rb @@ -0,0 +1,3 @@ +Rails.application.config.middleware.use OmniAuth::Builder do + provider :github, ENV["GITHUB_CLIENT_ID"], ENV["GITHUB_CLIENT_SECRET"], scope: "user:email" +end 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..7b4af86af --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,93 @@ +Rails.application.routes.draw do + root to: 'pages#index' + + get 'signup' => 'users#new' + + get 'login' => 'sessions#new' + + post 'login' => 'sessions#create_via_login' + + delete 'logout' => 'sessions#destroy' + + get 'pages/index' + + get 'sessions/create' + + get 'tasks/index', as: 'index' + + get 'tasks/show/:id' => 'tasks#show', as: 'show' + + post 'tasks/create' => 'tasks#create', as: 'create' + + get 'tasks/new' => 'tasks#new', as: 'new' + + get 'tasks/:id/edit' => 'tasks#edit', as: 'edit' + + patch 'tasks/:id/update' => 'tasks#update', as: 'update' + + patch 'tasks/:id/' => 'tasks#complete_toggle', as: 'complete_toggle' #changed this so might need to update + + delete 'tasks/:id/destroy' => 'tasks#destroy', as: 'destroy' + + get '/auth/:provider/callback' => 'sessions#create_via_github' + + # delete '/session/destroy' => 'sessions#destroy' + + resources :users + + + # 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..a7c4aea9f --- /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: cb4a4458b3adc7beb1b5609d7e1c7300a05af8a3c367a05396f434b7b2cc0b8138b54ee5b2ff79b9d1091b7bbe6eaab61994f6352ed398b9e70e88c802d33beb + +test: + secret_key_base: 57ef48543ef48939e6416124c8076e26263a55e57a74dc2be06aa9436949a18792d45a62527f2b6bf3a7dba26424c2dde7c4bdcbc920687a3bc306ce09e1d289 + +# 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 000000000..f949e1a7c Binary files /dev/null and b/db/development.sqlite3 differ diff --git a/db/migrate/20160928232311_create_tasks.rb b/db/migrate/20160928232311_create_tasks.rb new file mode 100644 index 000000000..d48b293a3 --- /dev/null +++ b/db/migrate/20160928232311_create_tasks.rb @@ -0,0 +1,11 @@ +class CreateTasks < ActiveRecord::Migration + def change + create_table :tasks do |t| + t.string :title + t.string :description + t.datetime :completed_at + + t.timestamps null: false + end + end +end diff --git a/db/migrate/20161004145644_add_notes_to_task.rb b/db/migrate/20161004145644_add_notes_to_task.rb new file mode 100644 index 000000000..9d7865d52 --- /dev/null +++ b/db/migrate/20161004145644_add_notes_to_task.rb @@ -0,0 +1,5 @@ +class AddNotesToTask < ActiveRecord::Migration + def change + add_column :tasks, :note, :text + end +end diff --git a/db/migrate/20161018170119_create_users.rb b/db/migrate/20161018170119_create_users.rb new file mode 100644 index 000000000..f85251a60 --- /dev/null +++ b/db/migrate/20161018170119_create_users.rb @@ -0,0 +1,12 @@ +class CreateUsers < ActiveRecord::Migration + def change + create_table :users do |t| + t.string :uid + t.string :name + t.string :provider + t.string :email + + t.timestamps null: false + end + end +end diff --git a/db/migrate/20161022191446_add_user_attributes.rb b/db/migrate/20161022191446_add_user_attributes.rb new file mode 100644 index 000000000..2a187c69d --- /dev/null +++ b/db/migrate/20161022191446_add_user_attributes.rb @@ -0,0 +1,6 @@ +class AddUserAttributes < ActiveRecord::Migration + def change + add_column :users, :avatar, :string + add_column :users, :authenticated, :boolean + end +end diff --git a/db/migrate/20161023050759_add_user_to_task.rb b/db/migrate/20161023050759_add_user_to_task.rb new file mode 100644 index 000000000..9aeea570a --- /dev/null +++ b/db/migrate/20161023050759_add_user_to_task.rb @@ -0,0 +1,5 @@ +class AddUserToTask < ActiveRecord::Migration + def change + add_reference :tasks, :user, index: true, foreign_key: true + end +end diff --git a/db/migrate/20161023220309_add_password_to_user.rb b/db/migrate/20161023220309_add_password_to_user.rb new file mode 100644 index 000000000..affa53528 --- /dev/null +++ b/db/migrate/20161023220309_add_password_to_user.rb @@ -0,0 +1,5 @@ +class AddPasswordToUser < ActiveRecord::Migration + def change + add_column :users, :password_digest, :string + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..f48218081 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,40 @@ +# 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: 20161023220309) do + + create_table "tasks", force: :cascade do |t| + t.string "title" + t.string "description" + t.datetime "completed_at" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.text "note" + t.integer "user_id" + end + + add_index "tasks", ["user_id"], name: "index_tasks_on_user_id" + + create_table "users", force: :cascade do |t| + t.string "uid" + t.string "name" + t.string "provider" + t.string "email" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.string "avatar" + t.boolean "authenticated" + t.string "password_digest" + end + +end diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100644 index 000000000..4edb1e857 --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,7 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). +# +# Examples: +# +# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) +# Mayor.create(name: 'Emanuel', city: cities.first) diff --git a/db/test.sqlite3 b/db/test.sqlite3 new file mode 100644 index 000000000..dd4a69a11 Binary files /dev/null and b/db/test.sqlite3 differ 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..dcfc7004c --- /dev/null +++ b/log/development.log @@ -0,0 +1,27457 @@ + + +Started GET "/" for ::1 at 2016-09-28 14:46:38 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 562ms (Views: 552.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:46:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:46:39 -0700 + + +Started GET "/" for ::1 at 2016-09-28 14:48:15 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:48:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:48:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:48:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:48:15 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:48:15 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:48:15 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:48:15 -0700 + + +Started GET "/" for ::1 at 2016-09-28 14:49:04 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:49:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:49:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:49:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:49:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:49:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:49:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:49:04 -0700 + + +Started GET "/" for ::1 at 2016-09-28 14:49:05 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:49:05 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:49:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:49:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:49:05 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:49:05 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:49:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:49:05 -0700 + + +Started GET "/" for ::1 at 2016-09-28 14:52:27 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms) + + +Started GET "/show/tasks" for ::1 at 2016-09-28 14:52:33 -0700 + +ActionController::RoutingError (No route matches [GET] "/show/tasks"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (22.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (95.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (166.1ms) + + +Started GET "/" for ::1 at 2016-09-28 14:55:29 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 14:55:49 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:55:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:55:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:55:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:55:49 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:55:49 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:55:49 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:55:49 -0700 + + +Started GET "/" for ::1 at 2016-09-28 14:57:20 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `title' for #): + 3:
    + 4: <% @alltasks.each do |task| %> + 5:
  1. + 6: <%= task.title %> + 7:
      + 8:
    • <%= task.description %>
    • + 9:
    • <%= task.completion %>
    • + app/views/tasks/index.html.erb:6:in `block in _app_views_tasks_index_html_erb__2996680299606866983_70121622689820' + app/views/tasks/index.html.erb:4:in `each' + app/views/tasks/index.html.erb:4:in `_app_views_tasks_index_html_erb__2996680299606866983_70121622689820' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (73.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.4ms) + + +Started GET "/" for ::1 at 2016-09-28 14:57:48 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 14:57:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 14:57:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 14:57:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 14:57:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 14:57:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 14:57:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 14:57:48 -0700 + + +Started GET "/" for ::1 at 2016-09-28 15:04:09 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:04:09 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:04:09 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:04:09 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:04:09 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:04:09 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:04:09 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:04:09 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:04:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `each' for nil:NilClass): + app/controllers/tasks_controller.rb:12:in `show' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (72.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.9ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:04:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `id' for #): + app/controllers/tasks_controller.rb:13:in `block in show' + app/controllers/tasks_controller.rb:12:in `each' + app/controllers/tasks_controller.rb:12:in `show' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (55.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (114.6ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:04:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:04:33 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:04:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:04:33 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:04:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:04:33 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:04:33 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:04:33 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:09:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (23.1ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f8ced74aa78> +Did you mean? @task): + 1:

      Tasks#show

      + 2:
      + 3:

      <%= task[:title] %>

      + 4:

      Description:

      + 5:

      + 6: <%= task[:description] %> + app/views/tasks/show.html.erb:3:in `_app_views_tasks_show_html_erb___4197276894879468389_70121627994880' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (381.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (107.4ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:09:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:09:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:09:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:09:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:09:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:09:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:09:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:09:32 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:10:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:10:26 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:10:26 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:10:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:10:26 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:10:26 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:10:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:10:26 -0700 + + +Started GET "/" for ::1 at 2016-09-28 15:10:30 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:10:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:10:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 15:11:20 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:11:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:11:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:11:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:11:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:11:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:11:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:11:20 -0700 + + +Started GET "/" for ::1 at 2016-09-28 15:11:36 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:11:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:11:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:11:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:11:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:11:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:11:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:11:36 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:11:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:11:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 29ms (Views: 27.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:11:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 15:14:33 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:14:33 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:14:33 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:14:33 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:14:33 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:14:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:14:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:14:33 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:14:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 15:20:08 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:20:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:20:08 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:20:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:20:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:20:08 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:20:08 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:20:08 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:20:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:20:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 26.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:20:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 15:23:30 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:23:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:23:30 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:23:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:23:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:23:30 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:23:30 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:23:30 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:23:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:24:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:24:07 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:24:07 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:24:07 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:24:07 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:24:07 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:24:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:24:07 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:24:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:24:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:24:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:24:15 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:24:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:24:15 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:24:15 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:24:15 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:24:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.8ms) +Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:24:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:24:31 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:24:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:24:31 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:24:31 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:24:31 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:24:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:24:31 -0700 + + +Started GET "/tasks/1/destroy" for ::1 at 2016-09-28 15:24:32 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/destroy"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (104.1ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:24:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:24:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:24:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:24:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:24:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:24:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:24:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:24:48 -0700 + + +Started GET "/tasks/1/destroy" for ::1 at 2016-09-28 15:24:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/destroy"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (95.3ms) + + +Started GET "/tasks/1/destroy" for ::1 at 2016-09-28 15:27:27 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"id"=>"1"} + Rendered tasks/destroy.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:27:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:27:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:27:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:27:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:27:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:27:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:27:27 -0700 + + +Started GET "/" for ::1 at 2016-09-28 15:27:34 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:27:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/destroy" for ::1 at 2016-09-28 15:27:38 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"id"=>"1"} + Rendered tasks/destroy.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:27:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:27:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 15:27:47 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:29:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-28 15:30:39 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:30:39 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:30:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:30:39 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:30:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:30:39 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:30:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:30:39 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-28 15:30:40 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 15:30:51 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:32:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 15:32:01 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.2ms) +Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 15:32:24 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.0ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:32:24 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:32:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:32:24 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:32:24 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:32:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:32:24 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:32:24 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:32:25 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:32:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 15:32:28 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.2ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:33:58 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:33:58 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:33:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:33:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:33:58 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:33:58 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:33:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:33:58 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:34:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:34:38 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 96ms (Views: 95.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:34:38 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:34:38 -0700 + + +Started GET "/assets/style.self-9ee4bb90c8c57dc16ac950f70ea35b50cb52fc93a1208c76b2b42064e114d65c.css?body=1" for ::1 at 2016-09-28 15:34:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:34:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:34:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:34:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:34:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:34:38 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:35:29 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-71d2d62cbda39b64d6e0794b0d9e1ef34e87f4778711c4d4116907c45c240d27.css?body=1" for ::1 at 2016-09-28 15:35:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:35:29 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:35:29 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:35:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:35:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:35:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:35:29 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:35:29 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:36:31 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-71d2d62cbda39b64d6e0794b0d9e1ef34e87f4778711c4d4116907c45c240d27.css?body=1" for ::1 at 2016-09-28 15:36:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:36:31 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:36:31 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:36:31 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:36:31 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:36:31 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:36:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:36:31 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:36:44 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:36:44 -0700 + + +Started GET "/assets/style.self-cea1b605d53fb8c8aac0eb168dd52198fb3d442ab63056bad6113edf6c4f33ad.css?body=1" for ::1 at 2016-09-28 15:36:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:36:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:36:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:36:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:36:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:36:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:36:44 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:36:52 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-8b4622af3908b960963f9db25f7b28614465eb329741fb054f6696b84603e079.css?body=1" for ::1 at 2016-09-28 15:36:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:36:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:36:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:36:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:36:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:36:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:36:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:36:52 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:36:53 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-8b4622af3908b960963f9db25f7b28614465eb329741fb054f6696b84603e079.css?body=1" for ::1 at 2016-09-28 15:36:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:36:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:36:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:36:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:36:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:36:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:36:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:36:53 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:37:10 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-8ad6b0685d689c4d0d577f6e0ab89b5fd3689b0015b5d4dd0108c1b384f4496e.css?body=1" for ::1 at 2016-09-28 15:37:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:37:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:37:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:37:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:37:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:37:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:37:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:37:10 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:37:11 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-8ad6b0685d689c4d0d577f6e0ab89b5fd3689b0015b5d4dd0108c1b384f4496e.css?body=1" for ::1 at 2016-09-28 15:37:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:37:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:37:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:37:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:37:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:37:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:37:12 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:37:12 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:37:17 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-f42b215638efbbff845d44e5135535b335652ba4821326c297dd48c7cc2fbeb7.css?body=1" for ::1 at 2016-09-28 15:37:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:37:17 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:37:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:37:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:37:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:37:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:37:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:37:17 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:38:04 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-f320afcdb4f1bca08d55325d79e99bcfb303bd18c15d0eb11ec0908ef652f68e.css?body=1" for ::1 at 2016-09-28 15:38:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:38:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:38:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:38:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:38:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:38:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:38:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:38:04 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:38:57 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-4a666e6a748c92c6cbdd575dc13e40cab8f6f3d1ca0ef1a77bcd6bf694460e6b.css?body=1" for ::1 at 2016-09-28 15:38:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:38:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:38:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:38:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:38:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:38:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:38:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:38:57 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:39:28 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 51ms (Views: 50.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-cce3a69af5813721a8805a4d402ddadc13128c0fc6c0db2bca70a121e278b3ac.css?body=1" for ::1 at 2016-09-28 15:39:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:39:28 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:39:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:39:28 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:39:28 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:39:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:39:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:39:28 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-28 15:39:31 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:39:33 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 37ms (Views: 34.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:39:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:39:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-e3449613dc9b6b43f32747382cfb719a998ae0a679867ac85bf3e29d80203d8e.css?body=1" for ::1 at 2016-09-28 15:39:46 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:39:46 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:39:46 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:39:46 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:39:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:39:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:39:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:39:46 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:39:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-a15bbc479d0a41e3957dfa3477423b5fe9d3252e1a0fe36165a065d86bcb9d30.css?body=1" for ::1 at 2016-09-28 15:39:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:39:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:39:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:39:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:39:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:39:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:39:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:39:52 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:40:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-a15bbc479d0a41e3957dfa3477423b5fe9d3252e1a0fe36165a065d86bcb9d30.css?body=1" for ::1 at 2016-09-28 15:40:03 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:03 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:03 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:03 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:03 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:03 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:04 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 33ms (Views: 31.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:06 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-a15bbc479d0a41e3957dfa3477423b5fe9d3252e1a0fe36165a065d86bcb9d30.css?body=1" for ::1 at 2016-09-28 15:40:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:06 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:06 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:06 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:06 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:06 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:11 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-13ed198bb922c3953957392e724e552ec40ffe16ce6c23d2e8087c0d1e0a8255.css?body=1" for ::1 at 2016-09-28 15:40:11 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:11 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:11 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:11 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:11 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:12 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-13ed198bb922c3953957392e724e552ec40ffe16ce6c23d2e8087c0d1e0a8255.css?body=1" for ::1 at 2016-09-28 15:40:12 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:12 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:33 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-f59abb1236966ef45f8a6c318bcb5fa055eddd44c6378396bc162b8a60236f75.css?body=1" for ::1 at 2016-09-28 15:40:33 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:33 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:33 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:33 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:33 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:33 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:33 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:33 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:52 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:52 -0700 + + +Started GET "/assets/style.self-049fac9ebdf27aa0fc1a02b10079cc2dd2eef126c4f933a77acff37623823ff6.css?body=1" for ::1 at 2016-09-28 15:40:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:52 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:40:59 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-4104f10b939c3004f5bc909250fbbd6a23daadaef633f8fddc74bb949291c42b.css?body=1" for ::1 at 2016-09-28 15:40:59 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:40:59 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:40:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:40:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:40:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:40:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:40:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:40:59 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:41:06 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-4104f10b939c3004f5bc909250fbbd6a23daadaef633f8fddc74bb949291c42b.css?body=1" for ::1 at 2016-09-28 15:41:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:06 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:06 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:06 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:06 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:06 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:41:15 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 25ms (Views: 25.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-984b1bceee855b5eded5684883ca29c78f766ba3ca95e7cb50601dd5b44248f5.css?body=1" for ::1 at 2016-09-28 15:41:15 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:15 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:15 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:15 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:15 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:41:16 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-984b1bceee855b5eded5684883ca29c78f766ba3ca95e7cb50601dd5b44248f5.css?body=1" for ::1 at 2016-09-28 15:41:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:16 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:41:37 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-984b1bceee855b5eded5684883ca29c78f766ba3ca95e7cb50601dd5b44248f5.css?body=1" for ::1 at 2016-09-28 15:41:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:37 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:41:38 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-984b1bceee855b5eded5684883ca29c78f766ba3ca95e7cb50601dd5b44248f5.css?body=1" for ::1 at 2016-09-28 15:41:38 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:38 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:38 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:38 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:38 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:38 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:38 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:38 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:41:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:41:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 35ms (Views: 34.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-9955b260a4ffd64d9021c97279bcb7ee33c11c1005cc79201ce1c33710a6d3ee.css?body=1" for ::1 at 2016-09-28 15:41:56 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:41:56 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:41:56 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:41:56 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:41:56 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:41:56 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:41:56 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:41:56 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:42:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-250dc61829fbf2410096f92b37222e83552741d80e06347a0a2ff6bab303dac1.css?body=1" for ::1 at 2016-09-28 15:42:00 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:42:00 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:42:00 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:42:00 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:42:00 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:42:00 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:42:00 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:42:00 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:42:10 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:42:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:42:17 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 39ms (Views: 37.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:42:45 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-6482876483033d94e3b0b868d8b3c7e3b00290520af5cb17d0267e2469136c86.css?body=1" for ::1 at 2016-09-28 15:42:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:42:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:42:45 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:42:45 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:42:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:42:45 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:42:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:42:45 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:42:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:42:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 37ms (Views: 36.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-f62d5dc17448eff889a7ec31e445b23ee6edb39be9917fafc645d263eedacd72.css?body=1" for ::1 at 2016-09-28 15:42:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:42:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:42:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:42:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:42:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:42:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:42:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:42:57 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:43:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-43fdbe071f86174850a92568c9ebbcfc9714d331788b940fbc54283328bcf467.css?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:43:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-43fdbe071f86174850a92568c9ebbcfc9714d331788b940fbc54283328bcf467.css?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:43:03 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:43:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:43:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:43:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:43:04 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-08c19e9336236906a3cf3a6677ca905211654e7cd8f0f1f7c0843129abf7d511.css?body=1" for ::1 at 2016-09-28 15:44:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:44:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:44:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:44:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:44:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:44:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:44:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:44:10 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-08c19e9336236906a3cf3a6677ca905211654e7cd8f0f1f7c0843129abf7d511.css?body=1" for ::1 at 2016-09-28 15:44:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:44:11 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:44:11 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:44:11 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:44:11 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:44:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:44:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:44:11 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:44:12 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 33ms (Views: 32.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-08c19e9336236906a3cf3a6677ca905211654e7cd8f0f1f7c0843129abf7d511.css?body=1" for ::1 at 2016-09-28 15:44:14 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:44:14 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:44:14 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:44:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:44:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:44:14 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:44:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:44:14 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-08c19e9336236906a3cf3a6677ca905211654e7cd8f0f1f7c0843129abf7d511.css?body=1" for ::1 at 2016-09-28 15:44:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:44:36 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:44:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:44:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:44:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:44:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:44:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:44:36 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:44:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-88a701e311ebe6b8fdcfe4140a634e7214575fea6eb41c48daa62dbbe0d75a3a.css?body=1" for ::1 at 2016-09-28 15:44:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:44:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:44:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:44:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:44:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:44:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:44:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:44:48 -0700 + + +Started GET "/tasks/1/destroy" for ::1 at 2016-09-28 15:44:49 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"id"=>"1"} + Rendered tasks/destroy.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:44:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:45:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:45:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:45:11 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:45:11 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:45:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:45:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:45:11 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:45:11 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:45:11 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:46:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:46:02 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:46:02 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:46:02 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:46:02 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:46:02 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:46:02 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:46:02 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:46:02 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:48:29 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:48:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:48:33 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 34ms (Views: 32.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:48:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:48:35 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:48:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:48:39 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 45ms (Views: 44.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:48:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:48:41 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:48:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:48:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:48:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:48:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:48:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:48:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:48:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:48:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:48:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:48:51 -0700 + + +Started GET "/tasks/show/3" for ::1 at 2016-09-28 15:49:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:49:07 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:49:07 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:49:07 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:49:07 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:49:07 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:49:07 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:49:07 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:49:07 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:49:10 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:53:24 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:53:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:53:24 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:53:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:53:24 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:53:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:53:24 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:53:24 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:53:24 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:53:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:53:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:54:42 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:54:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:54:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:54:42 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:54:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:54:42 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:54:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:54:42 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:54:42 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:54:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:54:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:54:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:54:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:54:49 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:54:49 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:54:49 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:54:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:54:49 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:57:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 15:57:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:57:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:57:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:57:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:57:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:57:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:57:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:57:27 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:57:28 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:57:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/edit" for ::1 at 2016-09-28 15:57:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:57:33 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 33ms (Views: 32.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:57:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:57:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:57:36 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 33ms (Views: 32.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:57:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:57:44 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 33ms (Views: 32.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 15:57:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/edit" for ::1 at 2016-09-28 15:57:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:57:51 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 15:58:40 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 26ms (Views: 25.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-890a428e489d3d90c29fd8e99d98e82b8be4ac1fd37cc98997d82a487f072c44.css?body=1" for ::1 at 2016-09-28 15:58:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:58:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:58:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:58:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:58:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:58:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:58:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:58:41 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:58:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:58:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:58:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-890a428e489d3d90c29fd8e99d98e82b8be4ac1fd37cc98997d82a487f072c44.css?body=1" for ::1 at 2016-09-28 15:58:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:58:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:58:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:58:44 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:58:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:58:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:58:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:58:44 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:58:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 15:59:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-99ea67620b1c0bb7c07bb1b0115b9aa644be39c9c7e25f59e3781cb308089a3b.css?body=1" for ::1 at 2016-09-28 15:59:22 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:59:22 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:59:22 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:59:22 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:59:22 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:59:22 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:59:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:59:22 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:59:22 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:59:23 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-99ea67620b1c0bb7c07bb1b0115b9aa644be39c9c7e25f59e3781cb308089a3b.css?body=1" for ::1 at 2016-09-28 15:59:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:59:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:59:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:59:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:59:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:59:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:59:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:59:23 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 15:59:24 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-99ea67620b1c0bb7c07bb1b0115b9aa644be39c9c7e25f59e3781cb308089a3b.css?body=1" for ::1 at 2016-09-28 15:59:24 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 15:59:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 15:59:24 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 15:59:24 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 15:59:24 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 15:59:24 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 15:59:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 15:59:24 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:00:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-99ea67620b1c0bb7c07bb1b0115b9aa644be39c9c7e25f59e3781cb308089a3b.css?body=1" for ::1 at 2016-09-28 16:00:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:00:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:00:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:00:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:00:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:00:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:00:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:00:04 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:00:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-99ea67620b1c0bb7c07bb1b0115b9aa644be39c9c7e25f59e3781cb308089a3b.css?body=1" for ::1 at 2016-09-28 16:00:05 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:00:05 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:00:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:00:05 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:00:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:00:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:00:05 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:00:05 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:00:44 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:00:45 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:00:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:00:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:01:15 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 46ms (Views: 45.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-7d6026d8791321cba01be92bac723a84d5beaf3d850cc946555c66bc3725288a.css?body=1" for ::1 at 2016-09-28 16:01:15 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:01:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:01:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:01:18 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-7d6026d8791321cba01be92bac723a84d5beaf3d850cc946555c66bc3725288a.css?body=1" for ::1 at 2016-09-28 16:01:18 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:01:18 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:01:18 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:01:18 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:01:18 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:01:18 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:01:18 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:01:18 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:01:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-3fb300695ad317fd9635fc5497038df4809ea717cb61c883feb0e906840079b3.css?body=1" for ::1 at 2016-09-28 16:01:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:01:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:01:58 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:01:58 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:01:58 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:01:58 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:01:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:01:58 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:01:58 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:01:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:02:00 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:02:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-3fb300695ad317fd9635fc5497038df4809ea717cb61c883feb0e906840079b3.css?body=1" for ::1 at 2016-09-28 16:02:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:02:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:02:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:02:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:02:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:02:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:02:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:02:01 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:02:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:02:10 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:02:10 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:02:10 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:02:10 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:02:10 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:02:10 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:02:10 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:02:10 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:02:35 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.0ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:04:15 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.0ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + +ActionView::Template::Error (undefined method `[]' for nil:NilClass): + 2:

      + 3:
      + 4: + 5: + 6: + 7: + 8: + app/views/tasks/new.html.erb:5:in `_app_views_tasks_new_html_erb___36360333957049649_70121592638020' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (62.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (114.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:04:23 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:04:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:04:24 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:04:24 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:04:24 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:04:24 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:04:24 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:04:24 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:04:24 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:05:25 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.3ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:05:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:05:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:05:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:05:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:05:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:05:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:05:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:05:25 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:05:31 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:05:31 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:05:31 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:05:31 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:05:31 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:05:31 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:05:31 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:05:31 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:05:31 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:05:57 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.0ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:05:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:05:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:05:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:05:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:05:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:05:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:05:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:05:57 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:05:58 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 34ms (Views: 32.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:05:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-28 16:06:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.6ms) +Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:06:13 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 32ms (Views: 31.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:06:14 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.2ms) +Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:07:29 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.0ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:07:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:07:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:07:29 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:07:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:07:29 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:07:29 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:07:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:07:29 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:07:31 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 16:07:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/edit" for ::1 at 2016-09-28 16:07:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendered tasks/edit.html.erb within layouts/application (0.8ms) +Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/edit" for ::1 at 2016-09-28 16:08:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendered tasks/edit.html.erb within layouts/application (0.5ms) +Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:08:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:08:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:08:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:08:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:08:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:08:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:08:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:08:17 -0700 + + +Started GET "/tasks/2/update?title=Eat&description=Eat+food&completed_at=&Update+Task=Submit" for ::1 at 2016-09-28 16:08:18 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/2/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (109.8ms) + + +Started GET "/tasks/2/update?title=Eat&description=Eat+food&completed_at=&Update+Task=Submit" for ::1 at 2016-09-28 16:08:33 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/2/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (106.8ms) + + +Started GET "/tasks/2/update?title=Eat&description=Eat+food&completed_at=&Update+Task=Submit" for ::1 at 2016-09-28 16:08:41 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/2/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (54.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (113.2ms) + + +Started GET "/tasks/2/update?title=Eat&description=Eat+food&completed_at=&Update+Task=Submit" for ::1 at 2016-09-28 16:09:43 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/2/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (46.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.2ms) + + +Started GET "/tasks/2/update?title=Eat&description=Eat+food&completed_at=&Update+Task=Submit" for ::1 at 2016-09-28 16:10:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"title"=>"Eat", "description"=>"Eat food", "completed_at"=>"", "Update Task"=>"Submit", "id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:10:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:10:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:10:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:10:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:10:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:10:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:10:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:10:23 -0700 + + +Started GET "/tasks/2/edit" for ::1 at 2016-09-28 16:10:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/update?title=Eat&description=Eat+food&completed_at=&Update+Task=Submit" for ::1 at 2016-09-28 16:10:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"title"=>"Eat", "description"=>"Eat food", "completed_at"=>"", "Update Task"=>"Submit", "id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/update?title=Eat&description=Eat+food&completed_at=&Update+Task=Submit" for ::1 at 2016-09-28 16:11:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"title"=>"Eat", "description"=>"Eat food", "completed_at"=>"", "Update Task"=>"Submit", "id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:11:06 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:11:06 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:11:06 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:11:06 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:11:06 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:11:06 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:11:06 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:11:06 -0700 + + +Started GET "/tasks/2/edit" for ::1 at 2016-09-28 16:11:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/update?title=Eat&description=Eat+food&completed_at=&Update+Task=Submit" for ::1 at 2016-09-28 16:11:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"title"=>"Eat", "description"=>"Eat food", "completed_at"=>"", "Update Task"=>"Submit", "id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:11:11 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:11:12 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:11:40 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:11:40 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:11:40 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:11:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:11:40 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:11:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:11:40 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:11:40 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:11:40 -0700 + + +Started GET "/tasks/update?title=&description=&Submit+Task=Submit" for ::1 at 2016-09-28 16:11:41 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (54.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (106.5ms) + + +Started GET "/tasks/update?title=&description=&Submit+Task=Submit" for ::1 at 2016-09-28 16:11:52 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (85.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.4ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:11:55 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:11:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-28 16:11:57 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.7ms) +Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/create?title=&description=&Submit+Task=Submit" for ::1 at 2016-09-28 16:11:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"", "description"=>"", "Submit Task"=>"Submit"} + Rendered tasks/create.html.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms) +  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  +  (0.1ms) select sqlite_version(*) +  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateTasks (20160928232311) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" varchar, "completed_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160928232311"]] +  (2.7ms) commit transaction + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + + +Started GET "/" for ::1 at 2016-09-28 16:36:31 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 543ms (Views: 530.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:36:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.0ms) + +NameError (undefined local variable or method `completed_at' for # +Did you mean? Complex): + app/controllers/tasks_controller.rb:26:in `show' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (79.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (87.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.0@rails_gemset/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (174.2ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:36:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-28 16:36:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-28 16:36:45 -0700 + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-28 16:36:45 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-28 16:36:45 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-28 16:36:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-28 16:36:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-28 16:36:45 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-28 16:36:45 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:36:49 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-28 16:36:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 32ms (Views: 30.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:36:51 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 43ms (Views: 42.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-28 16:36:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-28 16:36:54 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 36ms (Views: 34.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/3" for ::1 at 2016-09-28 16:36:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 08:34:03 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 590ms (Views: 573.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:34:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 49ms (Views: 48.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 08:34:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (1.0ms) +Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/destroy" for ::1 at 2016-09-29 08:34:10 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"id"=>"1"} + Rendered tasks/destroy.html.erb within layouts/application (1.1ms) +Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:34:14 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:34:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 35ms (Views: 34.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:34:16 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 31ms (Views: 29.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-29 08:34:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/edit" for ::1 at 2016-09-29 08:34:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:34:21 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 38ms (Views: 37.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:34:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:34:23 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:34:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 40ms (Views: 39.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 08:34:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:34:28 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 35ms (Views: 33.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-29 08:34:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 39ms (Views: 38.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/edit" for ::1 at 2016-09-29 08:34:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 37ms (Views: 36.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:34:35 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 35ms (Views: 34.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/3" for ::1 at 2016-09-29 08:34:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/3/edit" for ::1 at 2016-09-29 08:34:37 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:34:39 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 33ms (Views: 31.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 08:34:44 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/create?title=&description=&Submit+Task=Submit" for ::1 at 2016-09-29 08:34:46 -0700 +Processing by TasksController#create as HTML + Parameters: {"title"=>"", "description"=>"", "Submit Task"=>"Submit"} + Rendered tasks/create.html.erb within layouts/application (0.3ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:34:48 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:35:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 08:35:09 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 08:35:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.4ms) +Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-29 08:35:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 08:35:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 08:35:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 08:35:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 08:35:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 08:35:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 08:35:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 08:35:27 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:35:40 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:35:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:35:45 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 42ms (Views: 40.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-29 08:35:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/edit" for ::1 at 2016-09-29 08:35:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:35:54 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 31ms (Views: 30.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:36:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 31ms (Views: 30.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 08:36:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:36:11 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 34ms (Views: 33.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 08:36:16 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:36:17 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 34ms (Views: 33.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-29 08:36:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 31ms (Views: 29.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/2/edit" for ::1 at 2016-09-29 08:36:29 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 32ms (Views: 29.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:36:31 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 35ms (Views: 34.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:36:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 08:36:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:36:35 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 34ms (Views: 32.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:37:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 31ms (Views: 30.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:40:22 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 33ms (Views: 31.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-29 08:40:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:40:27 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:43:34 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 08:43:35 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:43:40 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:43:45 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 08:43:52 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.0ms) +Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:43:57 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 36ms (Views: 35.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:43:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 38ms (Views: 36.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:44:14 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 33ms (Views: 32.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 08:44:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 34ms (Views: 32.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 08:44:38 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 30ms (Views: 29.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 09:31:50 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 302ms (Views: 291.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 09:31:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 09:31:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 09:32:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:32:12 -0700 + + +Started GET "/assets/style.self-d0d41547350499f86e179c1430f9680ff8cb6045fb8cddd596caa84755582ad6.css?body=1" for ::1 at 2016-09-29 09:32:12 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:32:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:32:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:32:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:32:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:32:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:32:12 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-29 09:32:22 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 09:43:21 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 09:43:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:43:24 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.8ms) +Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 09:43:28 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 09:44:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 48ms (Views: 46.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-0d661f764e3307fc66fb7526d9f594aaae375f29523101ff483ac1d787f8e4ec.css?body=1" for ::1 at 2016-09-29 09:44:49 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-29 09:44:50 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 09:44:51 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-0d661f764e3307fc66fb7526d9f594aaae375f29523101ff483ac1d787f8e4ec.css?body=1" for ::1 at 2016-09-29 09:44:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:44:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:44:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:44:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:44:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:44:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:44:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:44:51 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-29 09:44:58 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-0d661f764e3307fc66fb7526d9f594aaae375f29523101ff483ac1d787f8e4ec.css?body=1" for ::1 at 2016-09-29 09:44:58 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:44:58 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:44:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:44:58 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:44:58 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:44:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:44:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:44:58 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-29 09:45:00 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 09:45:14 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-3cffe2f0f7bfe8f18c8e85c6887feeddf7663045f929eceb26acff984614c14b.css?body=1" for ::1 at 2016-09-29 09:45:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:45:14 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:45:14 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:45:14 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:45:14 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:45:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:45:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:45:14 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 09:45:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 09:45:15 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 09:45:16 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-3cffe2f0f7bfe8f18c8e85c6887feeddf7663045f929eceb26acff984614c14b.css?body=1" for ::1 at 2016-09-29 09:45:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:45:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:45:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:45:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:45:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:45:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:45:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:45:16 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-29 09:45:23 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.0ms) +Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-4b65f6a7d73f79438f688276dbfec0ff10d758430e623ee5d3b5d7d4c3722c68.css?body=1" for ::1 at 2016-09-29 09:45:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:45:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:45:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:45:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:45:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:45:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:45:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:45:23 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-29 09:45:35 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.0ms) +Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-5ed6de9b3d747501777afd0d69bc318a27d86d7d84e101efe1b4bbc5655b0995.css?body=1" for ::1 at 2016-09-29 09:45:35 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:45:35 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:45:35 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:45:35 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:45:35 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:45:35 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:45:35 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:45:35 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-29 09:45:36 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.0ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-5ed6de9b3d747501777afd0d69bc318a27d86d7d84e101efe1b4bbc5655b0995.css?body=1" for ::1 at 2016-09-29 09:45:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:45:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:45:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:45:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:45:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:45:36 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:45:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:45:36 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-29 09:45:54 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 36ms (Views: 35.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:45:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:45:54 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:45:54 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:45:54 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:45:54 -0700 + + +Started GET "/assets/style.self-b09b322316a322c4ecb6bc3ba00cf07f9374a7f094bd7a27453f6c3d4c23274f.css?body=1" for ::1 at 2016-09-29 09:45:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:45:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:45:54 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-29 09:45:55 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 09:45:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:45:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:46:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 33ms (Views: 32.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-6fcea2f893c403cdaacf13899661deac099b8cc0c1ce6505783c1ad4835f4171.css?body=1" for ::1 at 2016-09-29 09:46:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:46:58 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:46:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:46:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:46:58 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:46:58 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:46:58 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:46:58 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:46:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-6fcea2f893c403cdaacf13899661deac099b8cc0c1ce6505783c1ad4835f4171.css?body=1" for ::1 at 2016-09-29 09:46:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:46:59 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:46:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:46:59 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:46:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:46:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:46:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:46:59 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:47:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 30ms (Views: 29.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-82c10e55de62e4b0627c717e9acb9ad0ba274a8a21155e0b76eb88bce25b03b8.css?body=1" for ::1 at 2016-09-29 09:47:15 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:47:15 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:47:15 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:47:15 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:47:15 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:47:15 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:47:15 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:47:15 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:48:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-4e9b3e418025a8fd018e0a24b89b73a16ada55919f54b0e32442fab2a5dbbb06.css?body=1" for ::1 at 2016-09-29 09:48:30 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:48:30 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:48:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:48:30 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:48:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:48:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:48:30 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:48:30 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:48:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.0ms) +Completed 200 OK in 36ms (Views: 35.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-c34fa1efca771e462cd25e5b7c7e55d5755080f7400069cff8219c73ebdf9ce0.css?body=1" for ::1 at 2016-09-29 09:48:45 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:48:45 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:48:45 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:48:45 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:48:45 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:48:45 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:48:45 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:48:45 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:48:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.2ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-c34fa1efca771e462cd25e5b7c7e55d5755080f7400069cff8219c73ebdf9ce0.css?body=1" for ::1 at 2016-09-29 09:48:46 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:48:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:48:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:48:46 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:48:46 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:48:46 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:48:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:48:46 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:48:54 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-4e3fdff1b69d9b01905a9b708a5f303890a745560cbd495e749ba8b911184e0a.css?body=1" for ::1 at 2016-09-29 09:48:54 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:48:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:48:54 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:48:54 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:48:54 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:48:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:48:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:48:54 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:49:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 32ms (Views: 31.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-9e745d74048ad17ce811595a804a2b8b9745589db615e44c15f3539f19d62622.css?body=1" for ::1 at 2016-09-29 09:49:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:49:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:49:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:49:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:49:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:49:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:49:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:49:04 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:49:28 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 36ms (Views: 34.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-310417d663591b30349e46f1afc5800a2f5d1b17277f98ddcc3b98ee75491f0e.css?body=1" for ::1 at 2016-09-29 09:49:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:49:28 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:49:28 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:49:28 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:49:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:49:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:49:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:49:28 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:49:29 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-310417d663591b30349e46f1afc5800a2f5d1b17277f98ddcc3b98ee75491f0e.css?body=1" for ::1 at 2016-09-29 09:49:29 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:49:29 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:49:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:49:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:49:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:49:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:49:29 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:49:29 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:49:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-c4fa700c0f5fc16b7279ba6bec2ef44b7241c895a54830d441584879f7c82808.css?body=1" for ::1 at 2016-09-29 09:49:36 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:49:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:49:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:49:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:49:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:49:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:49:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:49:36 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:49:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-c4fa700c0f5fc16b7279ba6bec2ef44b7241c895a54830d441584879f7c82808.css?body=1" for ::1 at 2016-09-29 09:49:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:49:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:49:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:49:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:49:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:49:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:49:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:49:37 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:49:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 33ms (Views: 31.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-071bb92d1100149291978de45ec95b0b6119a4085da2686123540db5edd4ca2d.css?body=1" for ::1 at 2016-09-29 09:49:41 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:49:41 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:49:41 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:49:41 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:49:41 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:49:41 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:49:41 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:49:41 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:50:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-e942c29dfbd29144d873d2c81376776047069d76ab6977e6db206709b26d989c.css?body=1" for ::1 at 2016-09-29 09:50:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:50:12 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:50:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:50:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:50:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:50:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:50:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:50:12 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:50:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-bb5b2c877e99f20f7fae0e8bd7e8051b6c028e6d4152f8c09c94ab07e7b999fe.css?body=1" for ::1 at 2016-09-29 09:50:43 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:50:43 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:50:43 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:50:43 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:50:43 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:50:43 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:50:43 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:50:43 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:50:51 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:50:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:50:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:50:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:50:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:50:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:50:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:50:51 -0700 + + +Started GET "/assets/style.self-d6e5c21d4ab89b5ab0f0ec3d12e69541fe5af92c7023ee7c53ab55a42d54a88d.css?body=1" for ::1 at 2016-09-29 09:50:51 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:50:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d6e5c21d4ab89b5ab0f0ec3d12e69541fe5af92c7023ee7c53ab55a42d54a88d.css?body=1" for ::1 at 2016-09-29 09:50:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:50:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:50:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:50:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:50:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:50:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:50:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:50:52 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:52:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 37ms (Views: 36.6ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-885c74fc4fcba3f98df99fb1e33a923e8001b1c6fc739f251979c968c19f5b55.css?body=1" for ::1 at 2016-09-29 09:52:03 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:52:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:52:03 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:52:03 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:52:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:52:03 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:52:03 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:52:03 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:52:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 19ms (Views: 19.0ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-885c74fc4fcba3f98df99fb1e33a923e8001b1c6fc739f251979c968c19f5b55.css?body=1" for ::1 at 2016-09-29 09:52:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:52:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:52:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:52:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:52:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:52:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:52:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:52:04 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 09:52:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-d6e5c21d4ab89b5ab0f0ec3d12e69541fe5af92c7023ee7c53ab55a42d54a88d.css?body=1" for ::1 at 2016-09-29 09:52:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 09:52:49 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 09:52:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 09:52:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 09:52:49 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 09:52:49 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 09:52:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 09:52:49 -0700 + + +Started GET "/" for ::1 at 2016-09-29 13:18:04 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 334ms (Views: 323.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 13:18:17 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:18:19 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 13:18:22 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:18:23 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 49ms (Views: 47.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 13:18:24 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:18:26 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 13:22:01 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 36ms (Views: 35.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:22:02 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 13:22:03 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:22:03 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 13:22:04 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:22:06 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 13:22:07 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 30ms (Views: 29.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:22:08 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 27ms (Views: 26.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/index" for ::1 at 2016-09-29 13:22:09 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 30ms (Views: 30.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:22:10 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:22:20 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.0ms) +Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-6aba5ae6f02ca2bbda1ee7adf291c0b6e8187da8488bdbab8a13e3cd832b3fad.css?body=1" for ::1 at 2016-09-29 13:22:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 13:22:21 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 13:22:21 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 13:22:21 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 13:22:21 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 13:22:21 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 13:22:21 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 13:22:21 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-29 13:22:22 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:22:23 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.2ms) +Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:22:32 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.0ms) +Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 13:22:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 13:22:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 13:22:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 13:22:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 13:22:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 13:22:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 13:22:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 13:22:32 -0700 + + +Started GET "/tasks/index" for ::1 at 2016-09-29 13:22:33 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:22:33 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.1ms) +Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 13:25:42 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (0.2ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 13:25:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 13:25:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 13:25:42 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 13:25:42 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 13:25:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 13:25:42 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 13:25:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 13:25:42 -0700 + + +Started GET "/" for ::1 at 2016-09-29 15:15:33 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 335ms (Views: 324.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:15:35 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.0ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.5ms) + +SyntaxError (/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/new.html.erb:3: syntax error, unexpected '<' +...reeze;@output_buffer.append= <%= form_for @task, url: creat... +... ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/new.html.erb:14: syntax error, unexpected keyword_ensure, expecting end-of-input): + app/views/tasks/new.html.erb:3: syntax error, unexpected '<' + app/views/tasks/new.html.erb:14: syntax error, unexpected keyword_ensure, expecting end-of-input + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (76.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.0ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:15:52 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (29.2ms) +Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.4ms) + +ActionView::Template::Error (undefined local variable or method `create_path' for #<#:0x007ffbb5273658>): + 1:

      Add a Task

      + 2:
      + 3: <%= form_for @task, url: create_path do |f| %> + 4: <%= f.label :title %> + 5: <%= f.text_field :title%> + 6: + app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb___1819685591356733515_70359526376180' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (76.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:16:04 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (9.4ms) +Completed 200 OK in 30ms (Views: 25.3ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 15:16:04 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:16:04 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:16:04 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:16:04 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:16:04 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:16:04 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:16:04 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:16:04 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:16:12 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 15:16:12 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:16:12 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:16:12 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:16:12 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:16:12 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:16:12 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:16:12 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:16:12 -0700 + + +Started POST "/tasks/create" for ::1 at 2016-09-29 15:16:22 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/create"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (90.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (59.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (115.9ms) + + +Started GET "/" for ::1 at 2016-09-29 15:16:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:16:57 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.1ms) +Completed 200 OK in 29ms (Views: 21.3ms | ActiveRecord: 0.5ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 15:17:04 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"HRQ5tos4EG83doX7fHJ2PKdgvklufFpbik8KphsS381vFNVJFhWj3dRy7EavAUPRxualfPtkcW4oMttv+yOC1g==", "task"=>{"title"=>"test task", "description"=>"this is a test"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "test task"], ["description", "this is a test"], ["created_at", "2016-09-29 22:17:04.828440"], ["updated_at", "2016-09-29 22:17:04.828440"]] +  (2.4ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.4ms) +Completed 200 OK in 25ms (Views: 16.3ms | ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-09-29 15:17:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:17:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.5ms) + +NoMethodError (undefined method `alltasks' for TasksController:Class): + app/controllers/tasks_controller.rb:13:in `show' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (56.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:18:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.5ms) + +SyntaxError (/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/show.html.erb:14: syntax error, unexpected '}', expecting => +...sure you want to delete this?"}) );@output_buffer.safe_appen... +... ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/show.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/show.html.erb:19: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/show.html.erb:14: syntax error, unexpected '}', expecting => + app/views/tasks/show.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/show.html.erb:19: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (67.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (112.0ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:18:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + +SyntaxError (/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/show.html.erb:14: syntax error, unexpected '}', expecting => +...sure you want to delete this?"}) );@output_buffer.safe_appen... +... ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/show.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/show.html.erb:19: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/show.html.erb:14: syntax error, unexpected '}', expecting => + app/views/tasks/show.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/show.html.erb:19: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (70.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (54.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (113.6ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:18:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + +SyntaxError (/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/show.html.erb:14: syntax error, unexpected '}', expecting => +...sure you want to delete this?"}) );@output_buffer.safe_appen... +... ^ +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/show.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/show.html.erb:19: syntax error, unexpected keyword_end, expecting ')'): + app/views/tasks/show.html.erb:14: syntax error, unexpected '}', expecting => + app/views/tasks/show.html.erb:17: syntax error, unexpected keyword_ensure, expecting ')' + app/views/tasks/show.html.erb:19: syntax error, unexpected keyword_end, expecting ')' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (66.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (113.4ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:19:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 15:19:01 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:19:01 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:19:01 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:19:01 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:19:01 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:19:01 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:19:01 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:19:01 -0700 + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 15:19:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (0.9ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-29 15:19:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:19:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 33ms (Views: 31.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:19:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:19:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 30ms (Views: 27.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2016-09-29 15:19:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/edit.html.erb within layouts/application (0.1ms) +Completed 200 OK in 39ms (Views: 36.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1/update?title=test+task+with+edit&description=this+is+a+test&completed_at=&Update+Task=Submit" for ::1 at 2016-09-29 15:19:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (85.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (58.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (121.4ms) + + +Started GET "/tasks/1/update?title=test+task+with+edit&description=this+is+a+test&completed_at=&Update+Task=Submit" for ::1 at 2016-09-29 15:20:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (51.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.3ms) + + +Started GET "/tasks/1/update?title=test+task+with+edit&description=this+is+a+test&completed_at=&Update+Task=Submit" for ::1 at 2016-09-29 15:20:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.0ms) + + +Started GET "/" for ::1 at 2016-09-29 15:23:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 24ms (Views: 21.5ms | ActiveRecord: 1.2ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:23:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (3.8ms) +Completed 200 OK in 37ms (Views: 32.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:23:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 15:23:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:23:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:23:29 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:23:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:23:29 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:23:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:23:29 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:23:29 -0700 + + +Started POST "/tasks/1/edit" for ::1 at 2016-09-29 15:23:30 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1/edit"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (107.6ms) + + +Started GET "/" for ::1 at 2016-09-29 15:24:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:24:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/1/destroy" for ::1 at 2016-09-29 15:26:43 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"Rswq7E2ZRHrib/5h2mfje7L8FIlXU0lyYoI/RQzanZo0zMYT0LT3yAFrl9wJFNaW03oPvMJLYkfA/+6M7OvAgQ==", "id"=>"1"} + Rendered tasks/destroy.html.erb within layouts/application (0.3ms) +Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 15:27:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:27:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (33.0ms) +Completed 500 Internal Server Error in 40ms (ActiveRecord: 0.3ms) + +ActionView::Template::Error (undefined method `path_to' for #<#:0x007ffbb0a54480> +Did you mean? path_to_font): + 10:

      + 11:
      + 12:
      + 13:
      <%= path_to("Edit", edit_path(@task[:id])) %>
      + 14:
      <%= button_to("Delete", {action: "destroy", id: @task[:id]}, method: :delete, data: {confirm: "Are you sure you want to delete this?"}) %>
      + 15:
      + app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb___3689135502742632694_70359488543980' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (68.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (48.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.6ms) + + +Started GET "/" for ::1 at 2016-09-29 15:27:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 15:27:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 15:27:46 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:27:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:27:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:27:46 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:27:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:27:46 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:27:46 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:27:46 -0700 + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:27:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (5.7ms) +Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:28:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 15:28:28 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:28:28 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:28:28 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:28:28 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:28:28 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:28:28 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:28:28 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:28:28 -0700 + + +Started DELETE "/tasks/1/destroy" for ::1 at 2016-09-29 15:28:30 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UDLvJSQ5QNzo/0xuGGMHkU6KHBUdvohn1MDwhng1Us8iMgPauRTzbgv7JdPLEDJ8LwwHIIimo1J2vSFPmAQP1A==", "id"=>"1"} + Rendered tasks/destroy.html.erb within layouts/application (0.0ms) +Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 15:28:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/1" for ::1 at 2016-09-29 15:30:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 23ms (Views: 16.7ms | ActiveRecord: 0.5ms) + + +Started DELETE "/tasks/1/destroy" for ::1 at 2016-09-29 15:30:31 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"LI9fOQbMvJvaXZEJ6pybeHaQYllLUl7tRIYKE/RF1w9ej7PGm+EPKTlZ+LQ5766VFxZ5bN5Kddjm+9vaFHSKFA==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] +  (2.4ms) commit transaction + Rendered tasks/destroy.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 15.8ms | ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 15:30:32 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:30:47 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 29ms (Views: 20.5ms | ActiveRecord: 0.7ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 15:30:55 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"G+U3f+QC1VSCxD+NSjq1v/mH+1q2qdGG4izL+c9N6N5p5duAeS9m5mHAVjCZSYBSmAHgbyOx+rNAURowL3y1xQ==", "task"=>{"title"=>"task!", "description"=>"task description!"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "task!"], ["description", "task description!"], ["created_at", "2016-09-29 22:30:55.744165"], ["updated_at", "2016-09-29 22:30:55.744165"]] +  (2.5ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 16.8ms | ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 15:30:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 34ms (Views: 32.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/2" for ::1 at 2016-09-29 15:30:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 33ms (Views: 29.9ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/2/destroy" for ::1 at 2016-09-29 15:31:00 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"/EmqrpM5tFFrKWsuPtDmN7jV5CJ2hRQZHUQ5DdIFqruOSUZRDhQH44gtApPto9Pa2VP/F+OdPyy/OejEMjT3oA==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 2]] +  (0.2ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]] +  (2.5ms) commit transaction + Rendered tasks/destroy.html.erb within layouts/application (0.0ms) +Completed 200 OK in 22ms (Views: 14.8ms | ActiveRecord: 3.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:31:02 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:31:10 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 17.2ms | ActiveRecord: 0.5ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 15:31:16 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"l+0hXH8DVl/Re//3eGj3EFUt+2myMXm+7Zsg5rE8YnXl7c2j4i7l7TJ/lkqrG8L9NKvgXCcpUotP5vEvUQ0/bg==", "task"=>{"title"=>"test task", "description"=>"task descrip"}, "commit"=>"Create Task"} +  (0.2ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "test task"], ["description", "task descrip"], ["created_at", "2016-09-29 22:31:16.058474"], ["updated_at", "2016-09-29 22:31:16.058474"]] +  (2.5ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.1ms) +Completed 200 OK in 22ms (Views: 15.4ms | ActiveRecord: 3.0ms) + + +Started GET "/" for ::1 at 2016-09-29 15:31:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/3" for ::1 at 2016-09-29 15:31:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (6.4ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms) + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks", :id=>3}): + 11:
      + 12:
      + 13:
      <%= link_to("Edit", edit_path(@task[:id])) %>
      + 14:
      <%= button_to("Delete", {action: "destroy", id: @task[:id]}, method: :delete, data: {confirm: "Are you sure you want to delete this?"}) %>
      + 15:
      + app/views/tasks/show.html.erb:14:in `_app_views_tasks_show_html_erb___3689135502742632694_70359523440280' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (70.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (45.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:31:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 35ms (Views: 33.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:31:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 35ms (Views: 34.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 15:31:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:31:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:31:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:31:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:31:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:31:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:31:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:31:27 -0700 + + +Started GET "/tasks/show/3" for ::1 at 2016-09-29 15:32:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 30ms (Views: 22.5ms | ActiveRecord: 0.5ms) + + +Started DELETE "/tasks/3/destroy" for ::1 at 2016-09-29 15:32:33 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"pvUAkJilMGMWR9zTjoiZ49peTjWBg6kTnjWtgdmXUMPU9exvBYiD0fVDtW5d+6wOu9hVABSbgiY8SHxIOaYN2A==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 3]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 3]] +  (2.4ms) commit transaction + Rendered tasks/destroy.html.erb within layouts/application (0.0ms) +Completed 200 OK in 28ms (Views: 23.2ms | ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 15:33:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 21ms (Views: 18.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:33:38 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.7ms) +Completed 200 OK in 28ms (Views: 22.0ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 15:33:45 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"j14SzWEah6RuHfEWq0h1HP8L9+gDBcyEFW7QD5yoTg/9Xv4y/Dc0Fo0ZmKt4O0Dxno3s3ZYd57G3EwHGfJkTFA==", "task"=>{"title"=>"test task", "description"=>"descrip"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "test task"], ["description", "descrip"], ["created_at", "2016-09-29 22:33:45.530218"], ["updated_at", "2016-09-29 22:33:45.530218"]] +  (2.3ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.1ms) +Completed 200 OK in 21ms (Views: 14.9ms | ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-29 15:33:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/4" for ::1 at 2016-09-29 15:33:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 29ms (Views: 26.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/4/destroy" for ::1 at 2016-09-29 15:33:49 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"oKg2cQJCcsByj49cNuIN2lLj4CcABdqQreL5q9ETU5rSqNqOn2/BcpGL5uHlkTg3M2X7EpUd8aUPnyhiMSIOgQ==", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 4]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 4]] +  (2.3ms) commit transaction +Completed 500 Internal Server Error in 18ms (ActiveRecord: 2.7ms) + +NameError (undefined local variable or method `root' for #): + app/controllers/tasks_controller.rb:51:in `destroy' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (84.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:34:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 25ms (Views: 21.8ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:34:01 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.5ms) +Completed 200 OK in 36ms (Views: 30.8ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 15:34:06 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"biBkNCFG9WP0gQeTvZ43HHjGmiHyvQCG+DS9cIywScYcIIjLvGtG0ReFbi5u7QLxGUCBFGelK7NaSWy5bIEU3Q==", "task"=>{"title"=>"task!", "description"=>"descrip"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "task!"], ["description", "descrip"], ["created_at", "2016-09-29 22:34:06.970611"], ["updated_at", "2016-09-29 22:34:06.970611"]] +  (2.4ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.1ms) +Completed 200 OK in 23ms (Views: 16.4ms | ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 15:34:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 32ms (Views: 30.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/5" for ::1 at 2016-09-29 15:34:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:35:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 26ms (Views: 23.1ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/5" for ::1 at 2016-09-29 15:35:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 30ms (Views: 28.2ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/5/destroy" for ::1 at 2016-09-29 15:35:09 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"8eaZrAt+rJJfDnst34ckn3LrxTf7+xLQJ6f2iwJSGa6D5nVTllMfILwKEpAM9BFyE23eAm7jOeWF2idC4mNEtQ==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 5]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 5]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 15:35:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:35:11 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.4ms) +Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 15:35:17 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/7RE1iYQFa8TxwfYCBzrkv8WBzz7EhQt5TJ3C2D29yyNtKgpuz2mHfDDbmXbb95/npAcCW4KPxhHT6bCgMeqNw==", "task"=>{"title"=>"task!", "description"=>"description!"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.8ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "task!"], ["description", "description!"], ["created_at", "2016-09-29 22:35:17.125600"], ["updated_at", "2016-09-29 22:35:17.125600"]] +  (2.2ms) commit transaction + Rendered tasks/create.html.erb within layouts/application (0.1ms) +Completed 200 OK in 20ms (Views: 15.0ms | ActiveRecord: 3.1ms) + + +Started GET "/" for ::1 at 2016-09-29 15:35:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:35:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:35:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:35:50 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.1ms) +Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 15:35:57 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+mGTCiAAxhe9NhU6vtbmY/hhfUDelyqiM/5LXnVA8niIYX/1vS11pV4yfIdtpdOOmedmdUuPAZeRg5qXlXGvYw==", "task"=>{"title"=>"task2", "description"=>"description!"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "task2"], ["description", "description!"], ["created_at", "2016-09-29 22:35:57.026248"], ["updated_at", "2016-09-29 22:35:57.026248"]] +  (2.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.1ms) + + +Started GET "/" for ::1 at 2016-09-29 15:35:57 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/7" for ::1 at 2016-09-29 15:36:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/7/destroy" for ::1 at 2016-09-29 15:36:11 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"Kovv6MHi3NaqN+Z6Jt7Cwtqn5PhReWwtDlVB7GWvjbdYiwMXXM9vZEkzj8f1rfcvuyH/zcRhRxisKJAlhZ7QrA==", "id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 7]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 7]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 15:36:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:36:13 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.0ms) +Completed 200 OK in 34ms (Views: 32.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 15:36:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 35ms (Views: 33.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:36:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:36:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (0.8ms) +Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 15:36:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 33ms (Views: 32.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:39:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 34ms (Views: 32.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-29 15:39:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 33ms (Views: 32.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:48:59 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 304ms (Views: 291.1ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:49:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 31ms (Views: 18.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:49:12 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 15:49:13 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (21.4ms) +Completed 200 OK in 57ms (Views: 55.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 15:49:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:49:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 36ms (Views: 34.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:49:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (0.8ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/update?title=task%21&description=description%21&completed_at=noon&Update+Task=Submit" for ::1 at 2016-09-29 15:49:21 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/6/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (120.5ms) + + +Started GET "/" for ::1 at 2016-09-29 15:49:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:49:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:49:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 39ms (Views: 37.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:51:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 15:51:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:51:26 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:51:26 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:51:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:51:26 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:51:26 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:51:26 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:51:26 -0700 + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:51:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:51:28 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (3.5ms) +Completed 200 OK in 35ms (Views: 23.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/update" for ::1 at 2016-09-29 15:51:51 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/6/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (91.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.9ms) + + +Started GET "/" for ::1 at 2016-09-29 15:52:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:52:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:52:28 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (5.6ms) +Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/update" for ::1 at 2016-09-29 15:52:32 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/6/update"): + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.7ms) + + +Started GET "/" for ::1 at 2016-09-29 15:56:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:56:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:56:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (13.4ms) +Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/update" for ::1 at 2016-09-29 15:56:52 -0700 + +ActionController::RoutingError (uninitialized constant PostsController): + activesupport (4.2.7) lib/active_support/inflector/methods.rb:261:in `const_get' + activesupport (4.2.7) lib/active_support/inflector/methods.rb:261:in `block in constantize' + activesupport (4.2.7) lib/active_support/inflector/methods.rb:259:in `each' + activesupport (4.2.7) lib/active_support/inflector/methods.rb:259:in `inject' + activesupport (4.2.7) lib/active_support/inflector/methods.rb:259:in `constantize' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:60:in `controller' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:39:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (52.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.0ms) + + +Started GET "/" for ::1 at 2016-09-29 15:58:40 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 271ms (Views: 260.5ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:58:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 32ms (Views: 18.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:58:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (19.5ms) +Completed 200 OK in 38ms (Views: 37.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/update" for ::1 at 2016-09-29 15:58:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9l2pTl6GgxygR+ks5NG+ygaXVh0/h1+ZZBr+zmIEqOWEXUWxw6swrkNDgJE3oosnZxFNKKqfdKzGZy8HgjX1/g==", "task"=>{"title"=>"task!", "description"=>"description!", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +NoMethodError (undefined method `[]' for nil:NilClass): + app/controllers/tasks_controller.rb:40:in `update' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (73.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (47.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (121.4ms) + + +Started GET "/" for ::1 at 2016-09-29 15:59:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:59:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:59:18 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (4.3ms) +Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/update" for ::1 at 2016-09-29 15:59:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kOwSBYG/1/tkjHs6503KB+AwEXL2ksWORR+xXdn7QVTi7P76HJJkSYeIEoc0Pv/qgbYKR2OK7rvnYmCUOcocTw==", "task"=>{"title"=>"task!", "description"=>"description!", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", nil], ["description", nil], ["updated_at", "2016-09-29 22:59:22.662579"], ["id", 6]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 15:59:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:59:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:59:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (4.0ms) +Completed 200 OK in 39ms (Views: 37.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 15:59:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:59:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 31ms (Views: 29.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:59:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (4.8ms) +Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/6/update" for ::1 at 2016-09-29 15:59:35 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"tuZMcb1Xl7LqbW4cwgrWGbyt18ev/bil5EoXCLSf7CLE5qCOIHokAAlpB6EReeP03SvM8jrlk5BGN8bBVK6xOQ==", "task"=>{"title"=>"test", "description"=>"uh oh", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 15:59:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:59:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:59:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (2.5ms) +Completed 200 OK in 27ms (Views: 20.8ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-09-29 15:59:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-29 15:59:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 15:59:46 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 15:59:46 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 15:59:46 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 15:59:46 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 15:59:46 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 15:59:46 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 15:59:46 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 15:59:46 -0700 + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:59:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6/edit" for ::1 at 2016-09-29 15:59:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/edit.html.erb within layouts/application (3.4ms) +Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6/update" for ::1 at 2016-09-29 15:59:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"yLIzhpitvQJsOBbZ78ksYH71WLLWe7ahyAtIzcN9uvG6st95BYAOsI88f2Q8uhmNH3NDh0NjnZRqdpkEI0zn6g==", "task"=>{"title"=>"fd", "description"=>"fdgd", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + +NoMethodError (undefined method `[]' for nil:NilClass): + app/controllers/tasks_controller.rb:40:in `update' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (67.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (101.1ms) + + +Started GET "/tasks/show/6" for ::1 at 2016-09-29 15:59:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 29ms (Views: 27.9ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/6/destroy" for ::1 at 2016-09-29 15:59:58 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"pxWwskxPtw2I1KPipnubNwGzOPvHGixgfAcMcSQR1AbVFVxN0WIEv2vQyl91CK7aYDUjzlICB1Xeet24xCCJHQ==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 6]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 6]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-09-29 15:59:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:00:00 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.8ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 16:00:06 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"toHroSqciOnZE3R1HSLwBfYLSsSRyzw7Bky5duUvsdbEgQdet7E7WzoXHcjOUcXol41R8QTTFw6kMWi/BR7szQ==", "task"=>{"title"=>"test", "description"=>"task descrip"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "test"], ["description", "task descrip"], ["created_at", "2016-09-29 23:00:06.808716"], ["updated_at", "2016-09-29 23:00:06.808716"]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 3.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:00:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:00:07 -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/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:00:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 24ms (Views: 18.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:00:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:00:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:00:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:00:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:00:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:00:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:00:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:00:27 -0700 + + +Started GET "/" for ::1 at 2016-09-29 16:00:28 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:00:29 -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/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 32ms (Views: 30.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:00:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (6.0ms) +Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:00:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Cn6ga+pk/+vyQklLzGVuxFXSu7ACBz3dsCuwT3EB3wh4fkyUd0lMWRFGIPYfFlspNFSghZcfFugSVmGGkTCCEw==", "task"=>{"title"=>"test", "description"=>"task descrip", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:00:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:00:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:00:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (4.2ms) +Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:00:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"5y6+hlyLJg/ZzgYRL13QjtsJeFdPGlAn+GYtikNy3gCVLlJ5waaVvTrKb6z8LuVjuo9jYtoCexJaG/xDo0ODGw==", "task"=>{"title"=>"test", "description"=>"task descrip", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:00:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:01:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:01:37 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (3.8ms) +Completed 200 OK in 30ms (Views: 28.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:01:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"N2fmft/WQaiYv3Eq+Ji7r3xZ6VUWJ5BrhOycYkxTDlFFZwqBQvvyGnu7GJcr645CHd/yYIM/u14mkU2rrGJTSg==", "task"=>{"title"=>"test", "description"=>"task descrip", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:01:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:01:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 26ms (Views: 22.9ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2016-09-29 16:02:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 33ms (Views: 32.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:02:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:02:03 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:02:03 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:02:03 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:02:03 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:02:03 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:02:03 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:02:03 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:02:03 -0700 + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:02:04 -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/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:02:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (4.8ms) +Completed 200 OK in 29ms (Views: 27.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:08:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 22ms (Views: 19.1ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:08:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 35ms (Views: 32.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:08:49 -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/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:08:49 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:08:49 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:08:49 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:08:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:08:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:08:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:08:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:08:49 -0700 + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:08:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (6.2ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:08:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"EyXwfQ2j3HeEDZ4dRIJ/TIRUjnO6XWUWKGhDApRaYXdhJRyCkI5vxWcJ96CX8Uqh5dKVRi9FTiOKFZLLdGs8bA==", "task"=>{"title"=>"test", "description"=>"task descrip", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + +ArgumentError (wrong number of arguments (given 3, expected 1)): + app/controllers/tasks_controller.rb:40:in `update' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (71.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (108.4ms) + + +Started GET "/" for ::1 at 2016-09-29 16:09:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2016-09-29 16:09:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:09:08 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:09:08 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:09:08 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:09:08 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:09:08 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:09:08 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:09:08 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:09:08 -0700 + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:09:08 -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/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 28ms (Views: 25.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:09:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (5.0ms) +Completed 200 OK in 35ms (Views: 33.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:09:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"nBNaYaww6HeqRelaiamt1x7v/stsvsy95xDpUeK+qvzuE7aeMR1bxUlBgOda2pg6f2nl/vmm54hFbTiYAo/35w==", "task"=>{"title"=>"test", "description"=>"task descrip", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.1ms) + +NameError (undefined local variable or method `user_params' for #): + app/controllers/tasks_controller.rb:40:in `update' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (76.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (54.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (122.5ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:09:17 -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/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 32ms (Views: 29.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:11:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:11:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 41ms (Views: 38.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:11:37 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (5.9ms) +Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:11:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"JrswtFpAFoxZdkXLua+0dUR6hwJwIzpB9VVMw1SlkE9Uu9xLx22lPrpyLHZq3IGYJfycN+U7EXRXKJ0KtJTNVA==", "task"=>{"title"=>"test", "description"=>"task descrip", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-29 16:11:41 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:11:43 -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/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:11:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (4.7ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:11:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 36ms (Views: 34.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:12:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 25ms (Views: 18.2ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:12:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:12:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:12:58 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:12:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:12:58 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:12:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:12:58 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:12:58 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:12:58 -0700 + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:12:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (5.4ms) +Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:13:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rS4n0l4nC7E/A3TbmAn35x37cDFdALnm+nZiPTDBq9PfLsstwwq4A9wHHWZLesIKfH1rBMgYktNYC7P00PD2yA==", "task"=>{"title"=>"test", "description"=>"task descrip", "completed_at"=>""}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-29 16:13:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:13:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 32ms (Views: 30.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:13:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (4.7ms) +Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:13:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"3JHbZomMb6S/JH9FCCIHIwbqqARErUIRGv/rlA9c3TCukTeZFKHcFlwgFvjbUTLOZ2yzMdG1aSS4gjpd722AKw==", "task"=>{"title"=>"test", "description"=>"task descrip", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:13:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:13:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:13:09 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (3.6ms) +Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:13:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:14:05 -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/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:14:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (4.7ms) +Completed 200 OK in 33ms (Views: 31.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:14:08 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZOxCoQYoUJ7qzoKPitUa5jr3dghyn2JiD7A7BMFYT0IW7K5emwXjLAnK6zJZpi8LW3FtPeeHSVetzerNIWkSWQ==", "task"=>{"title"=>"test!", "description"=>"task descrip", "completed_at"=>""}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "test!"], ["updated_at", "2016-09-29 23:14:08.676281"], ["id", 8]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-09-29 16:14:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:14:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 30ms (Views: 28.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:14:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (3.4ms) +Completed 200 OK in 27ms (Views: 25.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:14:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ggnrEZm3kkY+njw+m0G6UjjsenaKHL4OvzOQw2Q7hwzwCQfuBJoh9N2aVYNIMo+/WWphQx8ElTsdTkEKhAraFw==", "task"=>{"title"=>"test!", "description"=>"task descrip!", "completed_at"=>""}, "commit"=>"Update Task", "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 "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "task descrip!"], ["updated_at", "2016-09-29 23:14:17.216705"], ["id", 8]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 16:14:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:14:18 -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/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 27ms (Views: 25.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:14:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 31ms (Views: 29.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:15:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 24ms (Views: 16.3ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:15:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:15:57 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:15:57 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:15:57 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:15:57 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:15:57 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:15:57 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:15:57 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:15:57 -0700 + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:15:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (5.7ms) +Completed 200 OK in 30ms (Views: 28.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:16:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"EGfcU6sMOsjU8pNSNlTS74vCoj1u1tiTG/vAHW/7q/BiZzCsNiGJejf2+u/lJ+cC6kS5CPvO86a5hhHUj8r26w==", "task"=>{"title"=>"test!", "description"=>"task descrip!", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-29 16:16:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:16:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:16:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (3.6ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:16:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:17:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 23ms (Views: 16.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:17:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:17:16 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:17:16 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:17:16 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:17:16 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:17:16 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:17:16 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:17:16 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:17:16 -0700 + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:17:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:17:17 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:17:17 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:17:17 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:17:17 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:17:17 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:17:17 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:17:17 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:17:17 -0700 + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:17:18 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (6.3ms) +Completed 200 OK in 37ms (Views: 35.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:17:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"RyqlUSn2vpH+u6YtJafsU9yP4mQtfcBe9vUzOi5CQKU1KkmutNsNIx2/z5D21Nm+vQn5Ubhl62tUiOLzznMdvg==", "task"=>{"title"=>"test!", "description"=>"task descrip!", "completed_at"=>"now"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2016-09-29 16:17:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:17:22 -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/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 32ms (Views: 30.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:17:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:17:23 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:17:23 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:17:23 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:17:23 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:17:23 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:17:23 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:17:23 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:17:23 -0700 + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:17:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (3.7ms) +Completed 200 OK in 28ms (Views: 25.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:17:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"3qk4r0gwGOKJfuzzMT1iPGwKeulVA/L4jWxdSU71AmysqdRQ1R2rUGp6hU7iTlfRDYxh3MAb2c0vEYyArsRfdw==", "task"=>{"title"=>"test!", "description"=>"task descrip!", "completed_at"=>"1"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-29 16:17:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:17:46 -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/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 33ms (Views: 32.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:18:21 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 27ms (Views: 25.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 16:18:27 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"cB0eBH3xJlM+lN29Rw40irGhjVIoHhwNP9r/H44gbqQCHfL74NyV4d2QtACUfQFn0CeWZ70GNzidpy7WbhEzvw==", "task"=>{"title"=>"new task", "description"=>"new descrip"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "new task"], ["description", "new descrip"], ["created_at", "2016-09-29 23:18:27.819740"], ["updated_at", "2016-09-29 23:18:27.819740"]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:18:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:18:56 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 17.6ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 16:19:04 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9w7lyHfN9kLQGsHWEr3nAroghAWfgNDMVCiJkikvp3eFDgk36uBF8DMeqGvBztLv26afMAqY+/n2VVhbyR76bA==", "task"=>{"title"=>"testing again", "description"=>"descrip"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "testing again"], ["description", "descrip"], ["created_at", "2016-09-29 23:19:04.067918"], ["updated_at", "2016-09-29 23:19:04.067918"]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:19:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/10" for ::1 at 2016-09-29 16:19:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:19:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:23:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 26ms (Views: 23.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:23:14 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:23:14 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:23:14 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:23:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:23:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:23:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:23:14 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:23:14 -0700 + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:23:15 -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/show.html.erb within layouts/application (4.9ms) +Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:23:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (12.5ms) +Completed 200 OK in 31ms (Views: 29.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:23:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"HJ9/4EifRJ1TKU+hqAnEkbkkZ3+U1hUbfwPTlZgMOIFun5Mf1bL3L7AtJhx7evF82KJ8SgHOPi7dfgJceD1lmg==", "task"=>{"title"=>"test!", "description"=>"task descrip!", "completed_at"=>"2016-09-05T16:04"}, "commit"=>"Update Task", "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_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-05 16:04:00.000000"], ["updated_at", "2016-09-29 23:23:37.300744"], ["id", 8]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-29 16:23:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:23:38 -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/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 31ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:24:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:24:28 -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/show.html.erb within layouts/application (4.4ms) +Completed 200 OK in 39ms (Views: 36.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:24:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 34ms (Views: 30.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:24:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (2.7ms) +Completed 200 OK in 34ms (Views: 21.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-29 16:25:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.3ms) +Completed 200 OK in 42ms (Views: 40.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:25:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 37ms (Views: 35.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:25:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 36ms (Views: 35.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/10" for ::1 at 2016-09-29 16:25:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 39ms (Views: 37.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/10/destroy" for ::1 at 2016-09-29 16:25:08 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"w4DsDtkn/Jm9JOL6DEd3iyd06l52j0fxAkx1iyL1LXqxgADxRApPK14gi0ffNEJmRvLxa+OXbMSgMaRCwsRwYQ==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 10]] +  (0.1ms) begin transaction + SQL (0.5ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 10]] +  (2.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 3.5ms) + + +Started GET "/" for ::1 at 2016-09-29 16:25:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:25:45 -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/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 29ms (Views: 26.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:25:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 36ms (Views: 34.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:31:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 28ms (Views: 25.7ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:31:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:31:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:31:42 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:31:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:31:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:31:42 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:31:42 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:31:42 -0700 + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:31:43 -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/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:31:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (8.3ms) +Completed 200 OK in 33ms (Views: 30.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:31:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ETrva75dWBRkJULbATDipPGR7FH/Qm3uOc1qKZhO8bRjOgOUI3DrpochK2bSQ9dJkBf3ZGpaRtubsLvgeH+srw==", "task"=>{"title"=>"test!", "description"=>"task descrip!", "completed_at"=>"2016-09-05T16:06"}, "commit"=>"Update Task", "id"=>"8"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + +NoMethodError (undefined method `update' for nil:NilClass): + app/controllers/tasks_controller.rb:39:in `update' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (99.7ms) + + +Started GET "/" for ::1 at 2016-09-29 16:32:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 23ms (Views: 20.1ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:32:17 -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/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 34ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:32:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (5.0ms) +Completed 200 OK in 33ms (Views: 30.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:32:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"5EkMZnzcJt90DTnU+f1BX7kOXThKm59U32MEPtjXHICWSeCZ4fGVbZcJUGkqjnSy2IhGDd+DtGF9HtX3OOZBmw==", "task"=>{"title"=>"test!", "description"=>"task description!", "completed_at"=>"2016-09-05T16:04:00"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + +ArgumentError (wrong number of arguments (given 2, expected 1)): + app/controllers/tasks_controller.rb:40:in `update' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (71.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (9.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (61.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (123.9ms) + + +Started GET "/" for ::1 at 2016-09-29 16:33:07 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:33:09 -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/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:33:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (6.1ms) +Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:33:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"JFclSsrS+2W3XPGdKC8ZvlSZ4vGED4B8K/EOZT0+RApWV8m1V/9I11RYmCD7XCxTNR/5xBEXq0mJjN+s3Q8ZEQ==", "task"=>{"title"=>"test!", "description"=>"task description!", "completed_at"=>"2016-09-05T16:04:00"}, "commit"=>"Update Task", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + +ArgumentError (wrong number of arguments (given 2, expected 1)): + app/controllers/tasks_controller.rb:40:in `update' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (49.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (105.5ms) + + +Started GET "/" for ::1 at 2016-09-29 16:34:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 21ms (Views: 17.1ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:34:26 -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/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 36ms (Views: 34.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8/edit" for ::1 at 2016-09-29 16:34:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/edit.html.erb within layouts/application (4.8ms) +Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8/update" for ::1 at 2016-09-29 16:34:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"VWmDceYANAjDs4TLK3uJYAVAUwUSnG0FFtL0ytNW9XknaW+Oey2HuiC37Xb4CLyNZMZIMIeERjC0ryUDM2eoYg==", "task"=>{"title"=>"test!", "description"=>"task description!", "completed_at"=>"2016-09-05T16:04:00"}, "commit"=>"Update Task", "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 "title" = ?, "description" = ?, "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", nil], ["description", nil], ["completed_at", nil], ["updated_at", "2016-09-29 23:34:30.642569"], ["id", 8]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-29 16:34:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:34:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:34:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/8" for ::1 at 2016-09-29 16:34:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 32ms (Views: 29.4ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/8/destroy" for ::1 at 2016-09-29 16:34:35 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"BjSFWT98zZcSMz06d8v2OWlzZoHBeyWJ7WQBXjdNGbh0NGmmolF+JfE3VIekuMPUCPV9tFRjDrxPGdCX13xEow==", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 8]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 8]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 16:34:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:34:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:34:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:34:49 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:34:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:34:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:34:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:34:49 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:34:49 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:34:49 -0700 + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:34:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (2.4ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:34:51 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (5.9ms) +Completed 200 OK in 29ms (Views: 27.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/9/update" for ::1 at 2016-09-29 16:35:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"y08CBTdBhnnbo6+bdHcoSW40uhfAx0Eo9Zg3z9qiBkG5T+76qmw1yzinxianBB2kD7KhIlXfah1X5eYGOpNbWg==", "task"=>{"title"=>"new task", "description"=>"new descrip", "completed_at"=>"0003-01-02T13:02"}, "commit"=>"Update Task", "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "0003-01-02 13:02:00.000000"], ["updated_at", "2016-09-29 23:35:00.674924"], ["id", 9]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:35:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:35:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:35:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:37:21 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 17.3ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2016-09-29 16:37:21 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:37:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 36ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:37:23 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (4.9ms) +Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/9/update" for ::1 at 2016-09-29 16:37:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"RJF0/BF06F3DqW4KlY7bVIuz8YjIxMbycCLpog4KhWc2kZgDjFlb7yCtB7dG/e656jXqvV3c7cfSXzhr7jvYfA==", "task"=>{"title"=>"new task!", "description"=>"new descrip", "completed_at"=>"0003-01-02T13:02:00"}, "commit"=>"Update Task", "id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "title" = ?, "description" = ?, "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", nil], ["description", nil], ["completed_at", nil], ["updated_at", "2016-09-29 23:37:25.556485"], ["id", 9]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 3.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:37:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:37:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:37:49 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 25ms (Views: 20.2ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-29 16:37:53 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"KoeeF1pdSfyzvLnSIjeGzvwBOfzbA9C5z1FQhsZazn9Yh3Lox3D6TlC40G/xRLMjnYciyU4b+4xtLIFPJmuTZA==", "task"=>{"title"=>"testing", "description"=>"123"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "testing"], ["description", "123"], ["created_at", "2016-09-29 23:37:53.863267"], ["updated_at", "2016-09-29 23:37:53.863267"]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-09-29 16:37:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:37:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 31ms (Views: 29.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:37:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (3.6ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/9/update" for ::1 at 2016-09-29 16:38:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"S/CxK7z0Yy4g76fDh3O6+0k0e0t2IByUNKsfvopt6Qk58F3UIdnQnMPrzn5UAI8WKLJgfuM4N6GW1s53aly0Eg==", "task"=>{"title"=>"update?", "description"=>"descrip", "completed_at"=>""}, "commit"=>"Update Task", "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "title" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", "update?"], ["description", "descrip"], ["updated_at", "2016-09-29 23:38:04.412917"], ["id", 9]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 3.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:38:04 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:38:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:38:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (5.3ms) +Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/9/update" for ::1 at 2016-09-29 16:38:15 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ck09Q6QaNFgzbHIdaRhdB4xotf/fkHU3TFX8xw1DquYATdG8OTeH6tBoG6C6a2jq7e6uykqIXgLuKC0O7XL3/Q==", "task"=>{"title"=>"update?", "description"=>"descrip", "completed_at"=>"1223-01-02T01:03"}, "commit"=>"Update Task", "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "1223-01-02 01:03:00.000000"], ["updated_at", "2016-09-29 23:38:15.897766"], ["id", 9]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-29 16:38:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:38:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:41:13 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 22ms (Views: 19.4ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:41:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 30ms (Views: 27.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:41:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 32ms (Views: 30.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:43:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 32ms (Views: 30.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:43:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:46:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:46:18 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:47:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 29ms (Views: 26.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-29 16:47:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-29 16:49:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-29 16:49:44 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-29 16:49:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-29 16:49:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-29 16:49:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-29 16:49:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-29 16:49:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-29 16:49:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-29 16:49:44 -0700 + + +Started GET "/tasks/show/9" for ::1 at 2016-09-29 16:49:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-29 16:49:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:49:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/show/11" for ::1 at 2016-09-29 16:49:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 31ms (Views: 29.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/11/edit" for ::1 at 2016-09-29 16:49:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/11/update" for ::1 at 2016-09-29 16:49:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"8JnKWC4JZRj25gjsS3oP6HRqNA+IvTYdWCN/YLNANpuCmSansyTWqhXiYVGYCToFFewvOh2lHSj6Xq6pU3FrgA==", "task"=>{"title"=>"testing", "description"=>"123!", "completed_at"=>""}, "commit"=>"Update Task", "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 "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "123!"], ["updated_at", "2016-09-29 23:49:53.396449"], ["id", 11]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-29 16:49:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/11" for ::1 at 2016-09-29 16:49:54 -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/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 32ms (Views: 30.9ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-29 16:49:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 32ms (Views: 30.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:50:36 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.0ms) +Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:50:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 32ms (Views: 30.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:52:40 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.4ms) +Completed 200 OK in 40ms (Views: 37.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:52:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 35ms (Views: 33.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:52:54 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:52:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 36ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-29 16:54:28 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.0ms) +Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-29 16:54:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:00:41 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 477ms (Views: 461.2ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:00:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 45ms (Views: 18.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-30 10:00:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (69.1ms) +Completed 200 OK in 95ms (Views: 93.5ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:00:47 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 38ms (Views: 36.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:03:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 22ms (Views: 18.6ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:03:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:03:29 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:03:29 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:03:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:03:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:03:29 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:03:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:03:29 -0700 + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:03:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.2ms) + +NameError (undefined local variable or method `‘' for #): + app/controllers/tasks_controller.rb:12:in `show' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (77.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (44.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (110.0ms) + + +Started GET "/" for ::1 at 2016-09-30 10:03:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:03:34 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:03:34 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:03:34 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:03:34 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:03:34 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:03:34 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:03:34 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:03:34 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:03:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 27ms (Views: 23.9ms | ActiveRecord: 0.7ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:03:42 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:03:42 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:03:42 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:03:42 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:03:42 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:03:42 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:03:42 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:03:42 -0700 + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:03:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 21.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:03:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:03:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:03:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:03:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:03:44 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:03:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:03:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:03:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:03:44 -0700 + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:03:51 -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]] +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.5ms) + +ArgumentError (tried to create Proc object without a block): + app/controllers/tasks_controller.rb:12:in `proc' + app/controllers/tasks_controller.rb:12:in `show' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (102.8ms) + + +Started GET "/" for ::1 at 2016-09-30 10:04:20 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.4ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:04:20 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:04:20 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:04:20 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:04:20 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:04:20 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:04:20 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:04:20 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:04:20 -0700 + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:04:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:04:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 23ms (Views: 16.9ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:04:58 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:04:58 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:04:58 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:04:58 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:04:58 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:04:58 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:04:58 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:04:58 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:04:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:05:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 34ms (Views: 31.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:05:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 26ms (Views: 19.4ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:05:36 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:05:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:05:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:05:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:05:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:05:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:05:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:05:36 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:05:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 10:05:48 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:05:48 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:05:48 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:05:48 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:05:48 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:05:48 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:05:48 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:05:48 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:05:48 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-30 10:05:49 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.6ms) +Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-30 10:05:55 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rtxudK5mvOjnxEBt5JWkBNDcOL5yAgpA7HSxMTXetuU8l/OeNnU1EhxzbOmonxDT3hmgh5Fs2p/UfEetvUcs5A==", "task"=>{"title"=>"new task!", "description"=>"tasky"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "new task!"], ["description", "tasky"], ["created_at", "2016-09-30 17:05:55.039953"], ["updated_at", "2016-09-30 17:05:55.039953"]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-09-30 10:05:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:05:56 -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/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/12/edit" for ::1 at 2016-09-30 10:05:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/update" for ::1 at 2016-09-30 10:06:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vjt7i4W/jFUTdbPA7j1WkkCUjc/FQ1qtEDxMF/VD7WLEcOZhHawFr+jCn0SiN+JFTlEV9iYtinIoNLqLfdp3Yw==", "task"=>{"title"=>"new task!", "description"=>"tasky", "completed_at"=>"0005-01-02T01:02"}, "commit"=>"Update Task", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "0005-01-02 01:02:00.000000"], ["updated_at", "2016-09-30 17:06:06.374197"], ["id", 12]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 2.9ms) + + +Started GET "/" for ::1 at 2016-09-30 10:06:06 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:06:07 -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/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:06:10 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 34ms (Views: 32.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 10:06:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:06:49 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:06:49 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:06:49 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:06:49 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:06:49 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:06:49 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:06:49 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:06:49 -0700 + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:06:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:06:51 -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/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:06:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:06:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:06:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:06:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:06:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:06:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:06:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:06:51 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:07:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:07:14 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 31ms (Views: 28.9ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:07:14 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:07:14 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:07:14 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:07:14 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:07:14 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:07:14 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:07:14 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:07:14 -0700 + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:07:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:07:16 -0700 +Processing by TasksController#index as HTML + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 35ms (Views: 32.7ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:12:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 33ms (Views: 31.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:19:36 -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/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 27ms (Views: 20.1ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:19:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:19:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:19:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:19:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:19:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:19:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:19:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:19:37 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:19:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/11" for ::1 at 2016-09-30 10:19:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/button" for ::1 at 2016-09-30 10:19:41 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"AJVujYZ4XAXyLtqlR8684eEVAySNXR6nUB1VBto+ufSS3vNnHmvV/wmZ9iELxAg279CbHW4zznhoFaOaUqcj9Q==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 17:19:41.865834"], ["updated_at", "2016-09-30 17:19:41.866499"], ["id", 11]] +  (2.5ms) commit transaction +Completed 500 Internal Server Error in 9ms (ActiveRecord: 2.9ms) + +ActionView::MissingTemplate (Missing template tasks/button, application/button with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/brianaeng/ada/week8/TaskListRails/app/views" +): + actionview (4.2.7) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (79.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (42.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (97.8ms) + + +Started GET "/" for ::1 at 2016-09-30 10:20:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/11" for ::1 at 2016-09-30 10:20:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered tasks/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2016-09-30 10:20:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 33ms (Views: 31.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:20:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12/button" for ::1 at 2016-09-30 10:20:19 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"K1YXnxdRFoar8ESodHSayhHn551pWqkaFpDvpRCdUSO5HYp1j0KffFBHaCw4fi4dHyJ/pIo0ecUumBk5mATLIg==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 17:20:19.872713"], ["updated_at", "2016-09-30 17:20:19.873398"], ["id", 12]] +  (2.6ms) commit transaction +Completed 500 Internal Server Error in 10ms (ActiveRecord: 3.5ms) + +ActionView::MissingTemplate (Missing template tasks/button, application/button with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/brianaeng/ada/week8/TaskListRails/app/views" +): + actionview (4.2.7) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (68.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (43.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (98.6ms) + + +Started GET "/" for ::1 at 2016-09-30 10:20:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 26ms (Views: 22.3ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:20:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:20:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:20:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/9/show" for ::1 at 2016-09-30 10:20:58 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"w2k6j9OpBu3NNjw2fEBQfkUPcR7ZtVHAIc9j+qY+Wp5RIqdlS7qPFzaBELIwSuSpS8rpJzrbgR8Zx5VmLqfAnw==", "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 17:20:58.640673"], ["updated_at", "2016-09-30 17:20:58.641293"], ["id", 9]] +  (2.5ms) commit transaction +Completed 500 Internal Server Error in 8ms (ActiveRecord: 2.9ms) + +ActionView::MissingTemplate (Missing template tasks/button, application/button with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/brianaeng/ada/week8/TaskListRails/app/views" +): + actionview (4.2.7) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (73.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (109.8ms) + + +Started GET "/" for ::1 at 2016-09-30 10:21:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:21:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9/edit" for ::1 at 2016-09-30 10:21:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/9/update" for ::1 at 2016-09-30 10:21:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"p1vzLDdk16wpSUApUcm6NlcovS9KuWS+SK6hqL93FJI1EG7Gr3deVtL+bK0dww7hWe0lFqnXtGFwplc0N+6Okw==", "task"=>{"title"=>"update?", "description"=>"descrip", "completed_at"=>"2016-09-21T17:20:58"}, "commit"=>"Update Task", "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-21 17:20:58.000000"], ["updated_at", "2016-09-30 17:21:17.935066"], ["id", 9]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:21:17 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/9" for ::1 at 2016-09-30 10:21:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/9/destroy" for ::1 at 2016-09-30 10:21:23 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"Muu5rbrByYqMr/VrJ6FeanUUK4dQ2uav44TFfSReU+OgoCRHItJAcHcY2e9rq+q9e9GzvrO0NnDbjDPhrMfJ4g==", "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 9]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 9]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.5ms) + + +Started GET "/" for ::1 at 2016-09-30 10:21:23 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/11" for ::1 at 2016-09-30 10:21:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11/show" for ::1 at 2016-09-30 10:21:25 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"OyCiQ8TuFyajfR7Q6UEtsEMEFOSOZ5vDlJGzan706bOpaz+pXP2e3FjKMlSlS5lnTcGM3W0JSxysmUX29m1zsg==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 17:21:25.354037"], ["updated_at", "2016-09-30 17:21:25.354472"], ["id", 11]] +  (2.3ms) commit transaction +Completed 500 Internal Server Error in 8ms (ActiveRecord: 2.6ms) + +ActionView::MissingTemplate (Missing template tasks/button, application/button with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/brianaeng/ada/week8/TaskListRails/app/views" +): + actionview (4.2.7) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (65.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (68.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (128.3ms) + + +Started GET "/tasks/show/11" for ::1 at 2016-09-30 10:21:51 -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/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:21:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:21:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:21:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:21:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:21:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:21:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:21:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:21:51 -0700 + + +Started PATCH "/tasks/11/show" for ::1 at 2016-09-30 10:21:53 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"Z4kHe4J7RWmMGFXvHLhgv5QPC7iTwPprSKPv/hX7Ukf1wpqRGmjMk3eveWtQstRomsqTgXCuKrRwqxlinWLIRg==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 17:21:53.146621"], ["updated_at", "2016-09-30 17:21:53.147289"], ["id", 11]] +  (2.6ms) commit transaction +Completed 500 Internal Server Error in 8ms (ActiveRecord: 3.0ms) + +ActionView::MissingTemplate (Missing template tasks/button, application/button with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/brianaeng/ada/week8/TaskListRails/app/views" +): + actionview (4.2.7) lib/action_view/path_set.rb:46:in `find' + actionview (4.2.7) lib/action_view/lookup_context.rb:121:in `find' + actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' + actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:8:in `render' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template' + actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render' + actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template' + actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template' + actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body' + actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body' + actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime' + activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:10:in `default_render' + actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:5:in `send_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action' + activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' + activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call' + activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.7) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call' + rack (1.6.4) lib/rack/etag.rb:24:in `call' + rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' + rack (1.6.4) lib/rack/head.rb:13:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' + activerecord (4.2.7) lib/active_record/migration.rb:377:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__' + activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' + activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.3.0) lib/web_console/middleware.rb:28:in `block in call' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `catch' + web-console (2.3.0) lib/web_console/middleware.rb:18:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.7) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.4) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call' + rack (1.6.4) lib/rack/sendfile.rb:113:in `call' + railties (4.2.7) lib/rails/engine.rb:518:in `call' + railties (4.2.7) lib/rails/application.rb:165:in `call' + rack (1.6.4) lib/rack/lock.rb:17:in `call' + rack (1.6.4) lib/rack/content_length.rb:15:in `call' + rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' + /Users/brianaeng/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (64.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (57.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (112.5ms) + + +Started GET "/" for ::1 at 2016-09-30 10:22:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 42ms (Views: 38.8ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks/show/11" for ::1 at 2016-09-30 10:22:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 35ms (Views: 32.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/11/destroy" for ::1 at 2016-09-30 10:22:43 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"CFy//gylJWrGMraHXA5uS7d/G/DzG88Pn6OeW3dZ3TGaFyIUlLaskD2FmgMQBNqcubqDyRB1H9Cnq2jH/8BHMA==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 11]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 11]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-30 10:22:43 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-30 10:22:43 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (5.5ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-30 10:22:51 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"xLb6deIKc6ZsDDR7uQz10q+mjLK6wDrSoWZ1q+TbPtpW/Wefehn6XJe7GP/1BkEFoWMUi1mu6g2ZboM3bEKk2w==", "task"=>{"title"=>"testing complete button", "description"=>"test"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "testing complete button"], ["description", "test"], ["created_at", "2016-09-30 17:22:51.403004"], ["updated_at", "2016-09-30 17:22:51.403004"]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-30 10:22:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 10:22:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 39ms (Views: 37.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/13/button" for ::1 at 2016-09-30 10:22:53 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"J5/42z6WL7bidB55BX7bRpDQtBCBlKneZUK3zYNaexa11GUxpoWmTBnDMv1JdG+RnhUsKWL6eQFdSkFRC8PhFw==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 17:22:53.451356"], ["updated_at", "2016-09-30 17:22:53.451782"], ["id", 13]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 10:22:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:23:00 -0700 +Processing by TasksController#index as HTML + Task Load (1.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 1.1ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 10:23:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:23:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 41ms (Views: 40.0ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:23:06 -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/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 36ms (Views: 34.6ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:23:09 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 10:23:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 28ms (Views: 19.8ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/13/show" for ::1 at 2016-09-30 10:23:32 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"yeb47Jg8x0Tf5RAfg5K5uxlgatMRRu3ra4DpIeTqhuBbrWUGAC9OviRSPJvPmA1sF6Xy6vIoPTRTiB+9bHMc4Q==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 17:23:32.190278"], ["updated_at", "2016-09-30 17:23:32.191024"], ["id", 13]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks/show/13 +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 10:23:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:23:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:27:19 -0700 +Processing by TasksController#index as HTML + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) + +SyntaxError (/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_ensure, expecting keyword_end +/Users/brianaeng/ada/week8/TaskListRails/app/views/tasks/index.html.erb:17: syntax error, unexpected end-of-input, expecting keyword_end): + app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_ensure, expecting keyword_end + app/views/tasks/index.html.erb:17: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1@global/gems/actionpack-4.2.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (50.6ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.5ms) + Rendered /Users/brianaeng/.rvm/gems/ruby-2.3.1/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (113.8ms) + + +Started GET "/" for ::1 at 2016-09-30 10:27:31 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-b6c94e494816e9b6b14fcff2b2ceb666c188a9cd6242399b6799f9ba445dd0f0.css?body=1" for ::1 at 2016-09-30 10:27:32 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:27:32 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:27:32 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:27:32 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:27:32 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:27:32 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:27:32 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:27:32 -0700 + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 10:27:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/show.html.erb within layouts/application (2.1ms) +Completed 200 OK in 28ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:27:34 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:28:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 99ms (Views: 97.6ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-4bf77363a8b0ad24a9e6387850839759753f10d2c3a70659abc504bedae26801.css?body=1" for ::1 at 2016-09-30 10:28:29 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:28:29 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:28:29 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:28:29 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:28:29 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:28:29 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:28:29 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:28:29 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:28:30 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-4bf77363a8b0ad24a9e6387850839759753f10d2c3a70659abc504bedae26801.css?body=1" for ::1 at 2016-09-30 10:28:30 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:28:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:28:30 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:28:30 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:28:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:28:30 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:28:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:28:30 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:29:51 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.1ms) +Completed 200 OK in 320ms (Views: 308.9ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-b3d3c05d936f3e16b5bc2017f1c07b6982db4f1eb779a2c90efe5fd4d7ea3102.css?body=1" for ::1 at 2016-09-30 10:29:51 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:29:51 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:29:51 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:29:51 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:29:51 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:29:51 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:29:51 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:29:51 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:29:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-b3d3c05d936f3e16b5bc2017f1c07b6982db4f1eb779a2c90efe5fd4d7ea3102.css?body=1" for ::1 at 2016-09-30 10:29:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:29:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:29:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:29:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:29:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:29:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:29:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:29:52 -0700 + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:29:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 29ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:29:54 -0700 +Processing by TasksController#index as HTML + Task Load (1.0ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 43ms (Views: 41.5ms | ActiveRecord: 1.0ms) + + +Started GET "/" for ::1 at 2016-09-30 10:29:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-ce4c75c3c9e848fdbcf73d136bb91a40bacaa0b0380ddcf8a4446003916d4ba6.css?body=1" for ::1 at 2016-09-30 10:29:58 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:29:59 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-ce4c75c3c9e848fdbcf73d136bb91a40bacaa0b0380ddcf8a4446003916d4ba6.css?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:29:59 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:48:51 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 10:50:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 42ms (Views: 41.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 10:50:36 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:50:36 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:50:36 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:50:36 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:50:36 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:50:36 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:50:36 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:50:36 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:54:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-f691812960df3c7bc101ad6ab0daa7f0facb5cb001579f93d994058e0ecbf2af.css?body=1" for ::1 at 2016-09-30 10:54:37 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:54:37 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:54:37 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:54:37 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:54:37 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:54:37 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:54:37 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:54:37 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:54:53 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-233bbb79262053432537b463dc6f336276254e0fdb33d4daa0b5ea0a117c5b10.css?body=1" for ::1 at 2016-09-30 10:54:53 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:54:53 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:54:53 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:54:53 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:54:53 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:54:53 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:54:53 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:54:53 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:58:27 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/style.self-c6cfcbc14c76f9d5f278965694089331237bf237d9ce68b774a5a000a76f1d8a.css?body=1" for ::1 at 2016-09-30 10:58:27 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:58:27 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:58:27 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:58:27 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:58:27 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:58:27 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:58:27 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:58:27 -0700 + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 10:58:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:58:29 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 38ms (Views: 37.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 10:58:55 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 34ms (Views: 33.5ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-e6676991540c6c7c414c5c2fff10623ffeb9d1c781a96c6a7f98a7cccb5ebb6e.css?body=1" for ::1 at 2016-09-30 10:58:55 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:58:55 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:58:55 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:58:55 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:58:55 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:58:55 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:58:55 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:58:55 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:59:25 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-c6cfcbc14c76f9d5f278965694089331237bf237d9ce68b774a5a000a76f1d8a.css?body=1" for ::1 at 2016-09-30 10:59:25 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:59:25 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:59:25 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:59:25 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:59:25 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:59:25 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:59:25 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:59:25 -0700 + + +Started GET "/" for ::1 at 2016-09-30 10:59:26 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-c6cfcbc14c76f9d5f278965694089331237bf237d9ce68b774a5a000a76f1d8a.css?body=1" for ::1 at 2016-09-30 10:59:26 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 10:59:26 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 10:59:26 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 10:59:26 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 10:59:26 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 10:59:26 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 10:59:26 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 10:59:26 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:00:22 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:00:22 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:00:22 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:00:22 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:00:22 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:00:22 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:00:22 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:00:22 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:00:22 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:00:39 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:00:39 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:00:39 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:00:39 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:00:39 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:00:39 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:00:39 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:00:39 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:00:39 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:00:40 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.3ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:00:40 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:00:40 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:00:40 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:00:40 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:00:40 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:00:40 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:00:40 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:00:40 -0700 + + +Started GET "/" for ::1 at 2016-09-30 11:00:52 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:00:52 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:00:52 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:00:52 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:00:52 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:00:52 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:00:52 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:00:52 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:00:52 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-30 11:00:54 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (21.1ms) +Completed 200 OK in 38ms (Views: 36.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-30 11:01:00 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DJzCbe0VQzPkrYYgwtx4LaVtM9WlJUymf2xXnvmsfzae11+HdQbKyR8aqqSO1sz6q6ir7EZLnHlHZKECcTXlNw==", "task"=>{"title"=>"new task not done", "description"=>"testing"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "new task not done"], ["description", "testing"], ["created_at", "2016-09-30 18:01:00.133093"], ["updated_at", "2016-09-30 18:01:00.133093"]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-30 11:01:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:01:05 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:01:05 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:01:05 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:01:05 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:01:05 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:01:05 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:01:05 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:01:05 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:01:05 -0700 + + +Started GET "/tasks/new" for ::1 at 2016-09-30 11:01:14 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (4.6ms) +Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-30 11:01:15 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 33ms (Views: 31.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 11:01:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 32ms (Views: 27.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/14/show" for ::1 at 2016-09-30 11:01:17 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"Tker6x4h5P3KLWkd+BJQbws217p0fh7He8Uq/pAIdfbcDDYBhjJtBzGaRZm0GOS4BfNPg5cQzhhDzdxiGJHv9w==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 18:01:17.922055"], ["updated_at", "2016-09-30 18:01:17.922603"], ["id", 14]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/14 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 11:01:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:01:19 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 11:01:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 36ms (Views: 33.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/14/edit" for ::1 at 2016-09-30 11:01:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (3.5ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 11:01:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"a/FvrP0LUgarTSLR1w1vSru1GhdmWcXM3pCdTWnk0Ef5uvJGZRjb/FD6DlWbB9udtXCCLoU3FRPmmGvR4X1KRg==", "task"=>{"title"=>"new task not done", "description"=>"testing", "completed_at"=>"2016-08-30T18:01:17"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-08-30 18:01:17.000000"], ["updated_at", "2016-09-30 18:01:33.340734"], ["id", 14]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/" for ::1 at 2016-09-30 11:01:33 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 11:01:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/14/edit" for ::1 at 2016-09-30 11:01:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/14/update" for ::1 at 2016-09-30 11:01:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"mPacjPdExC/j7zgWZa7GO6jUXZM5UT7JC3C25zgl6OQKvQFmb1dN1RhYFJIppHLsphHFqto/7hYzeEB7sLxy5Q==", "task"=>{"title"=>"new task not done", "description"=>"testing", "completed_at"=>"2016-08-31T18:01:17"}, "commit"=>"Update Task", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-08-31 18:01:17.000000"], ["updated_at", "2016-09-30 18:01:42.952844"], ["id", 14]] +  (2.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:01:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/14" for ::1 at 2016-09-30 11:01:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 36ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/14/destroy" for ::1 at 2016-09-30 11:01:46 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"FTRWzeOFvHmv4L0A0hsD4yA2I2VEhGXXAarMHhqoXImHf8sne5Y1g1RXkYSeEbc0LvO7XKfqtQg5ojqCkjHGiA==", "id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 14]] +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 14]] +  (3.3ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 3.6ms) + + +Started GET "/" for ::1 at 2016-09-30 11:01:46 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-30 11:01:48 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (2.9ms) +Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for ::1 at 2016-09-30 11:01:49 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 43ms (Views: 40.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2016-09-30 11:01:51 -0700 +Processing by TasksController#new as HTML + Rendered tasks/new.html.erb within layouts/application (3.6ms) +Completed 200 OK in 34ms (Views: 33.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks/create" for ::1 at 2016-09-30 11:01:56 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"KwfxWSCWXfKuW3PA1nDIJsC7oKXdAKScZF8nCjuIQxW5TGyzuIXUCFXsX0Saenzxzn44nD5udENcV9GWsxHZFA==", "task"=>{"title"=>"tasky", "description"=>"task"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "tasky"], ["description", "task"], ["created_at", "2016-09-30 18:01:56.625673"], ["updated_at", "2016-09-30 18:01:56.625673"]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/" for ::1 at 2016-09-30 11:01:56 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:01:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:02:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 28ms (Views: 18.9ms | ActiveRecord: 0.8ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:02:54 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:02:54 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:02:54 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:02:54 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:02:54 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:02:54 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:02:54 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:02:54 -0700 + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 11:02:55 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"98Z8c2dPogQbuhNL0uaAITHyHI3yN7jTSu95DWsY4g5ljeGZ/1wr/uANP8+e7DT2PzeEtBFZaAxy54+R44F4Dw==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:02:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:02:58 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 32ms (Views: 31.6ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:03:11 -0700 +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:03:11 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:03:11 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:03:11 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:03:11 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:03:11 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:03:11 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:03:11 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:03:11 -0700 + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:03:12 -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/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 28ms (Views: 26.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 11:03:13 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"lJht8hjpMDUK22I7VifjOo1mPC107A2EmpeDCihUX7cG0/AYgPq5z/FsTr8aLVftg6OkFJeC3Vuin3WWoM3Ftg==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 2ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:03:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:03:30 -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/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 28ms (Views: 18.2ms | ActiveRecord: 0.9ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:03:30 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:03:30 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:03:30 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:03:30 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:03:30 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:03:30 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:03:30 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:03:30 -0700 + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 11:03:31 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"5T3cQOw5vimtiCxPPbs8/aG+lMhzJ9kSm0oKWAhwsml3dkGqdCo301Y/AMtxsYgqr3sM8ZBJCc2jQvzEgOkoaA==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 18:03:31.239278"], ["updated_at", "2016-09-30 18:03:31.239930"], ["id", 15]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:03:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 11:03:32 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"h/JRvWyLo95BXFZJNNrDHpuQowA8/BuOT8X2UHBulvEVucxX9JgqJLrres140HfJlVU7Od+Sy1F3zQDM+PcM8A==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 18:03:32.766919"], ["id", 15]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 5ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:03:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 11:03:33 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"HD285tqsC5WEmD5eAf8Ssl91so8QRmmqy0JMk/q9z+COdiEMQr+Cb38vEtpN9aZlUbAqtvMouXXzSroPciRV4Q==", "id"=>"15"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 18:03:33.968414"], ["updated_at", "2016-09-30 18:03:33.968896"], ["id", 15]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 6ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:03:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 11:03:34 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"1cEZCmhwn1QhLW7CqPGp6CQvDSxRVYo/3+pij5qOKVtHioTg8GMWrtqaQkbk+x0/KuqVFbI7WuDn4pQTEhezWg==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 18:03:34.569033"], ["id", 15]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:03:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:03:35 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:04:44 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.6ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:04:44 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:04:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:04:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:04:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:04:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:04:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:04:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:04:44 -0700 + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:06:34 -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/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 11:06:35 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"JTgWkLwYe5+RYNVVDwwVK8oFUT6L/k/mhyEx0KO3Lgq3c4t6JAvyZWrX+dFDBqH8xMDJB2iQnzm/KcdMKy60Cw==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", "2016-09-30 18:06:35.445731"], ["updated_at", "2016-09-30 18:06:35.446388"], ["id", 15]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 6ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:06:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:06:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:06:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/15/show" for ::1 at 2016-09-30 11:06:38 -0700 +Processing by TasksController#button as HTML + Parameters: {"authenticity_token"=>"spfEAuFJa93xM+Bu0IvsSCq1cVbmBG7aGay3UvqqgSQg3FnoeVriJwqEzOqcgVifJHDpbwVqvgUhpEHOcjMbJQ==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "completed_at" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completed_at", nil], ["updated_at", "2016-09-30 18:06:38.495759"], ["id", 15]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks/show/15 +Completed 302 Found in 7ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks/show/15" for ::1 at 2016-09-30 11:06:38 -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/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/15/edit" for ::1 at 2016-09-30 11:06:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"15"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 15]] + Rendered tasks/edit.html.erb within layouts/application (8.9ms) +Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:06:42 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/12" for ::1 at 2016-09-30 11:06:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 12]] + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2016-09-30 11:06:45 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 33ms (Views: 31.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 11:06:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2016-09-30 11:06:50 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 33ms (Views: 31.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 11:08:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 32ms (Views: 29.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/show/13" for ::1 at 2016-09-30 11:08:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/style.self-7eae9af17f0b777879a070edef2b100f5ca8d5007644b2b40a7c66e99c1b7974.css?body=1" for ::1 at 2016-09-30 11:08:44 -0700 + + +Started GET "/assets/tasks.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2016-09-30 11:08:44 -0700 + + +Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2016-09-30 11:08:44 -0700 + + +Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-09-30 11:08:44 -0700 + + +Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2016-09-30 11:08:44 -0700 + + +Started GET "/assets/tasks.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for ::1 at 2016-09-30 11:08:44 -0700 + + +Started GET "/assets/turbolinks.self-c5acd7a204f5f25ce7a1d8a0e4d92e28d34c9e2df2c7371cd7af88e147e4ad82.js?body=1" for ::1 at 2016-09-30 11:08:44 -0700 + + +Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2016-09-30 11:08:44 -0700 + + +Started GET "/tasks/13/edit" for ::1 at 2016-09-30 11:08:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 13]] + Rendered tasks/edit.html.erb within layouts/application (8.0ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms) + +ActionView::Template::Error (Missing partial tasks/_create, application/_create with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}. Searched in: + * "/Users/brianaeng/ada/week8/TaskListRails/app/views" +): + 1:

      Edit Your Task

      + 2:
      + 3: <%= render partial: 'create' %> + 4: + 5: +
      +
      +

      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/pages_controller_test.rb b/test/controllers/pages_controller_test.rb new file mode 100644 index 000000000..2d71e4ff6 --- /dev/null +++ b/test/controllers/pages_controller_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class PagesControllerTest < ActionController::TestCase + test "should get index" do + get :index + assert_response :success + end + +end diff --git a/test/controllers/sessions_controller_test.rb b/test/controllers/sessions_controller_test.rb new file mode 100644 index 000000000..917642596 --- /dev/null +++ b/test/controllers/sessions_controller_test.rb @@ -0,0 +1,17 @@ +require 'test_helper' + +class SessionsControllerTest < ActionController::TestCase + def login_a_user + request.env['omniauth.auth'] = OmniAuth.config.mock_auth[:github] + get :create, {provider: "github"} + end + + test "can create a user" do + assert_difference('User.count', 1) do + login_a_user + assert_response :redirect + assert_equal session[:user_id], User.find_by(uid: OmniAuth.config.mock_auth[:github][:uid], provider: 'github').id + end + end + +end diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb new file mode 100644 index 000000000..573101ab5 --- /dev/null +++ b/test/controllers/tasks_controller_test.rb @@ -0,0 +1,54 @@ +require 'test_helper' + +class TasksControllerTest < ActionController::TestCase + + # test "should get index" do + # get :index + # assert_response :success + # end + # + # test "should get show" do + # get :show + # assert_response :success + # end + # + # test "should get create" do + # get :create + # assert_response :success + # end + # + # test "should get new" do + # get :new + # assert_response :success + # end + # + # test "should get edit" do + # get :edit + # assert_response :success + # end + # + # test "should get update" do + # get :update + # assert_response :success + # end + # + # test "should get destroy" do + # get :destroy + # assert_response :success + # end + + test "make sure a user can see their tasks" do + session[:user_id] = users(:ada).id + get :show, id: tasks(:adas_task).id + + assert_response :success + end + + test "make sure a user can't see another person's tasks" do + session[:user_id] = users(:babbage).id + get :show, id: tasks(:adas_task).id + + assert_response :redirect + end + +end diff --git a/test/controllers/users_controller_test.rb b/test/controllers/users_controller_test.rb new file mode 100644 index 000000000..db1a29882 --- /dev/null +++ b/test/controllers/users_controller_test.rb @@ -0,0 +1,39 @@ +require 'test_helper' + +class UsersControllerTest < ActionController::TestCase + # test "should get index" do + # get :index + # assert_response :success + # end + # + # test "should get show" do + # get :show + # assert_response :success + # end + # + # test "should get new" do + # get :new + # assert_response :success + # end + # + # test "should get create" do + # get :create + # assert_response :success + # end + # + # test "should get edit" do + # get :edit + # assert_response :success + # end + # + # test "should get update" do + # get :update + # assert_response :success + # end + # + # test "should get destroy" do + # get :destroy + # assert_response :success + # end + +end 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..ea93bf19c --- /dev/null +++ b/test/fixtures/tasks.yml @@ -0,0 +1,13 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +adas_task: + title: "Tasky Numero Uno" + description: "The first task" + user_id: 10 + completed_at: 2016-09-28 16:23:11 + +babbages_task: + title: "Make the first computer" + description: "Build it!" + user_id: 20 + completed_at: 2016-09-28 16:23:11 diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml new file mode 100644 index 000000000..23602914d --- /dev/null +++ b/test/fixtures/users.yml @@ -0,0 +1,64 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +ada: + id: 10 + uid: 123 + name: "Ada" + provider: "github" + email: "ada@me.com" + avatar: "test.jpg" + created_at: 2016-09-26 12:57:50 + +babbage: + id: 20 + uid: 456 + name: "Babbage" + provider: "github" + email: "babbage@me.com" + avatar: "test.jpg" + created_at: 2016-09-26 12:57:50 + +no_name: + id: 3 + uid: 345 + name: + provider: "github" + email: "test@me.com" + avatar: "test.jpg" + created_at: 2016-09-26 12:57:50 + +no_email: + id: 4 + uid: 435 + name: "Test" + provider: "github" + email: + avatar: "test.jpg" + created_at: 2016-09-26 12:57:50 + +incorrect_email: + id: 5 + uid: 435 + name: "Test" + provider: "github" + email: "dsgfdgdfg" + avatar: "test.jpg" + created_at: 2016-09-26 12:57:50 + +no_avatar: + id: 6 + uid: 768 + name: "Test" + provider: "github" + email: "test1@me.com" + avatar: + created_at: 2016-09-26 12:57:50 + +no_uid: + id: 7 + uid: + name: "Test" + provider: "github" + email: "test2@me.com" + avatar: "test.jpg" + created_at: 2016-09-26 12:57:50 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/models/user_test.rb b/test/models/user_test.rb new file mode 100644 index 000000000..85ee3074f --- /dev/null +++ b/test/models/user_test.rb @@ -0,0 +1,27 @@ +require 'test_helper' + +class UserTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end + + test 'a user must have a name' do + assert users(:no_name).invalid? + assert users(:ada).valid? + end + + test 'a user must have a valid email' do + assert users(:no_email).invalid? + assert users(:incorrect_email).invalid? + assert users(:babbage).valid? + end + + test 'a user must have an avatar' do + assert users(:no_avatar).invalid? + end + + test 'a user must have a uid' do + assert users(:no_uid).invalid? + end + +end diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 000000000..afb1121aa --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,15 @@ +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... + def setup + OmniAuth.config.test_mode = true + + OmniAuth.config.mock_auth[:github] = OmniAuth::AuthHash.new({provider: 'github', uid: '123545', info: {email: "a@b.com", name: "Ada"}, extra: {raw_info: {avatar_url: "image.jpg"}}}) + end +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